Struct FYIApiClient

Source
pub struct FYIApiClient<C: Connect> { /* private fields */ }

Implementations§

Source§

impl<C: Connect> FYIApiClient<C>

Source

pub fn new(configuration: Rc<Configuration<C>>) -> FYIApiClient<C>

Trait Implementations§

Source§

impl<C: Connect> FYIApi for FYIApiClient<C>

Source§

fn fyi_deliveryoptions_device_id_delete( &self, device_id: &str, ) -> Box<dyn Future<Item = Value, Error = Error<Value>>>

Source§

fn fyi_deliveryoptions_device_post( &self, body: Body, ) -> Box<dyn Future<Item = InlineResponse2006, Error = Error<Value>>>

Source§

fn fyi_deliveryoptions_email_put( &self, enabled: &str, ) -> Box<dyn Future<Item = InlineResponse2006, Error = Error<Value>>>

Source§

fn fyi_deliveryoptions_get( &self, ) -> Box<dyn Future<Item = InlineResponse2005, Error = Error<Value>>>

Source§

fn fyi_disclaimer_typecode_get( &self, typecode: &str, ) -> Box<dyn Future<Item = InlineResponse2007, Error = Error<Value>>>

Source§

fn fyi_disclaimer_typecode_put( &self, typecode: &str, ) -> Box<dyn Future<Item = InlineResponse2006, Error = Error<Value>>>

Source§

fn fyi_notifications_get( &self, max: &str, exclude: &str, include: &str, ) -> Box<dyn Future<Item = Notifications, Error = Error<Value>>>

Source§

fn fyi_notifications_more_get( &self, id: &str, ) -> Box<dyn Future<Item = Notifications, Error = Error<Value>>>

Source§

fn fyi_notifications_notification_id_put( &self, notification_id: &str, ) -> Box<dyn Future<Item = Value, Error = Error<Value>>>

Source§

fn fyi_settings_get( &self, ) -> Box<dyn Future<Item = Vec<InlineResponse2008>, Error = Error<Value>>>

Source§

fn fyi_settings_typecode_post( &self, typecode: &str, body: Body1, ) -> Box<dyn Future<Item = Value, Error = Error<Value>>>

Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.