Trait AddressbookStore
Source pub trait AddressbookStore:
Send
+ Sync
+ 'static {
Show 15 methods
// Required methods
fn get_addressbook<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
id: &'life2 str,
show_deleted: bool,
) -> Pin<Box<dyn Future<Output = Result<Addressbook, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn get_addressbooks<'life0, 'life1, 'async_trait>(
&'life0 self,
principal: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<Addressbook>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get_deleted_addressbooks<'life0, 'life1, 'async_trait>(
&'life0 self,
principal: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<Addressbook>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn update_addressbook<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
id: &'life2 str,
addressbook: Addressbook,
) -> 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_addressbook<'life0, 'async_trait>(
&'life0 self,
addressbook: Addressbook,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn delete_addressbook<'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_addressbook<'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 sync_changes<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
addressbook_id: &'life2 str,
synctoken: i64,
) -> Pin<Box<dyn Future<Output = Result<(Vec<(String, AddressObject)>, Vec<String>, i64), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn addressbook_metadata<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
addressbook_id: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<CollectionMetadata, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn get_objects<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
principal: &'life1 str,
addressbook_id: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<(String, AddressObject)>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn get_object<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
principal: &'life1 str,
addressbook_id: &'life2 str,
object_id: &'life3 str,
show_deleted: bool,
) -> Pin<Box<dyn Future<Output = Result<AddressObject, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait;
fn put_object<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
principal: &'life1 str,
addressbook_id: &'life2 str,
object_id: &'life3 str,
object: AddressObject,
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;
fn delete_object<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
principal: &'life1 str,
addressbook_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,
addressbook_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;
fn import_addressbook<'life0, 'async_trait>(
&'life0 self,
addressbook: Addressbook,
objects: Vec<(String, AddressObject)>,
merge_existing: bool,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}