Skip to main content

EventRepository

Trait EventRepository 

Source
pub trait EventRepository {
    // Required method
    fn insert_event(&self, event: &DbEventRecord) -> Result<()>;
}
Expand description

Event insertion.

Required Methods§

Source

fn insert_event(&self, event: &DbEventRecord) -> Result<()>

Inserts an event record.

Implementors§