Trait CalendarWriteStore
Source pub trait CalendarWriteStore:
Send
+ Sync
+ 'static {
// Required methods
fn update_calendar<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
id: &'life2 str,
calendar: Calendar,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn insert_calendar<'life0, 'async_trait>(
&'life0 self,
calendar: Calendar,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn delete_calendar<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
name: &'life2 str,
use_trashbin: bool,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn restore_calendar<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
name: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn import_calendar<'life0, 'async_trait>(
&'life0 self,
calendar: Calendar,
objects: Vec<CalendarObject>,
merge_existing: bool,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn put_objects<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
cal_id: &'life2 str,
objects: Vec<(String, CalendarObject)>,
overwrite: bool,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn delete_object<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
principal: &'life1 str,
cal_id: &'life2 str,
object_id: &'life3 str,
use_trashbin: bool,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait;
fn restore_object<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
principal: &'life1 str,
cal_id: &'life2 str,
object_id: &'life3 str,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait;
// Provided method
fn put_object<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
principal: &'life1 str,
cal_id: &'life2 str,
object_id: &'life3 str,
object: CalendarObject,
overwrite: bool,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait { ... }
}