pub struct FBGraphAPI {}Trait Implementations§
Source§impl Debug for FBGraphAPI
impl Debug for FBGraphAPI
Source§impl Default for FBGraphAPI
impl Default for FBGraphAPI
Source§fn default() -> FBGraphAPI
fn default() -> FBGraphAPI
Returns the “default value” for a type. Read more
Source§impl GraphAPI for FBGraphAPI
impl GraphAPI for FBGraphAPI
fn me<'life0, 'life1, 'async_trait>(
&'life0 self,
token: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<User, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn friends<'life0, 'life1, 'async_trait>(
&'life0 self,
token: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<ResponseFriends, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn my_picture<'life0, 'life1, 'async_trait>(
&'life0 self,
token: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<ResponsePicture, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for FBGraphAPI
impl RefUnwindSafe for FBGraphAPI
impl Send for FBGraphAPI
impl Sync for FBGraphAPI
impl Unpin for FBGraphAPI
impl UnsafeUnpin for FBGraphAPI
impl UnwindSafe for FBGraphAPI
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