pub struct ReAPI { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl Relation for ReAPI
impl Relation for ReAPI
fn check_following<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
uid: &'life1 String,
target_uid: &'life2 String,
) -> Pin<Box<dyn Future<Output = Result<bool, Box<dyn Error>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn get_followers<'life0, 'life1, 'async_trait>(
&'life0 self,
uid: &'life1 String,
) -> Pin<Box<dyn Future<Output = Result<FollowersResp, Box<dyn Error>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get_following<'life0, 'life1, 'async_trait>(
&'life0 self,
uid: &'life1 String,
cursor: Option<String>,
) -> Pin<Box<dyn Future<Output = Result<FollowingResp, Box<dyn Error>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for ReAPI
impl !RefUnwindSafe for ReAPI
impl Send for ReAPI
impl Sync for ReAPI
impl Unpin for ReAPI
impl !UnwindSafe for ReAPI
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