pub struct FYIApiClient<C: Connect> { /* private fields */ }
Implementations§
Source§impl<C: Connect> FYIApiClient<C>
impl<C: Connect> FYIApiClient<C>
pub fn new(configuration: Rc<Configuration<C>>) -> FYIApiClient<C>
Trait Implementations§
Source§impl<C: Connect> FYIApi for FYIApiClient<C>
impl<C: Connect> FYIApi for FYIApiClient<C>
fn fyi_deliveryoptions_device_id_delete( &self, device_id: &str, ) -> Box<dyn Future<Item = Value, Error = Error<Value>>>
fn fyi_deliveryoptions_device_post( &self, body: Body, ) -> Box<dyn Future<Item = InlineResponse2006, Error = Error<Value>>>
fn fyi_deliveryoptions_email_put( &self, enabled: &str, ) -> Box<dyn Future<Item = InlineResponse2006, Error = Error<Value>>>
fn fyi_deliveryoptions_get( &self, ) -> Box<dyn Future<Item = InlineResponse2005, Error = Error<Value>>>
fn fyi_disclaimer_typecode_get( &self, typecode: &str, ) -> Box<dyn Future<Item = InlineResponse2007, Error = Error<Value>>>
fn fyi_disclaimer_typecode_put( &self, typecode: &str, ) -> Box<dyn Future<Item = InlineResponse2006, Error = Error<Value>>>
fn fyi_notifications_get( &self, max: &str, exclude: &str, include: &str, ) -> Box<dyn Future<Item = Notifications, Error = Error<Value>>>
fn fyi_notifications_more_get( &self, id: &str, ) -> Box<dyn Future<Item = Notifications, Error = Error<Value>>>
fn fyi_notifications_notification_id_put( &self, notification_id: &str, ) -> Box<dyn Future<Item = Value, Error = Error<Value>>>
fn fyi_settings_get( &self, ) -> Box<dyn Future<Item = Vec<InlineResponse2008>, Error = Error<Value>>>
fn fyi_settings_typecode_post( &self, typecode: &str, body: Body1, ) -> Box<dyn Future<Item = Value, Error = Error<Value>>>
fn fyi_unreadnumber_get( &self, ) -> Box<dyn Future<Item = InlineResponse2009, Error = Error<Value>>>
Auto Trait Implementations§
impl<C> Freeze for FYIApiClient<C>
impl<C> !RefUnwindSafe for FYIApiClient<C>
impl<C> !Send for FYIApiClient<C>
impl<C> !Sync for FYIApiClient<C>
impl<C> Unpin for FYIApiClient<C>
impl<C> !UnwindSafe for FYIApiClient<C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more