mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-28 13:34:21 +02:00
9 lines
371 B
Rust
9 lines
371 B
Rust
use ruma::{CanonicalJsonObject, EventId};
|
|
|
|
use crate::{PduEvent, Result};
|
|
|
|
pub(crate) trait Data: Send + Sync {
|
|
fn get_outlier_pdu_json(&self, event_id: &EventId) -> Result<Option<CanonicalJsonObject>>;
|
|
fn get_outlier_pdu(&self, event_id: &EventId) -> Result<Option<PduEvent>>;
|
|
fn add_pdu_outlier(&self, event_id: &EventId, pdu: &CanonicalJsonObject) -> Result<()>;
|
|
}
|