pub struct IsFollowingCustomList {
pub list_id: Uuid,
/* private fields */
}
Expand description
Check if the logged-in user follows a custom list.
Makes a request to GET /user/follows/list/{id}
.
Fields§
§list_id: Uuid
Implementations§
Source§impl IsFollowingCustomList
impl IsFollowingCustomList
pub async fn send(&mut self) -> Result<IsFollowingResponse>
Trait Implementations§
Source§impl Clone for IsFollowingCustomList
impl Clone for IsFollowingCustomList
Source§fn clone(&self) -> IsFollowingCustomList
fn clone(&self) -> IsFollowingCustomList
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IsFollowingCustomList
impl Debug for IsFollowingCustomList
Source§impl Endpoint for IsFollowingCustomList
impl Endpoint for IsFollowingCustomList
Auto Trait Implementations§
impl Freeze for IsFollowingCustomList
impl !RefUnwindSafe for IsFollowingCustomList
impl !Send for IsFollowingCustomList
impl !Sync for IsFollowingCustomList
impl Unpin for IsFollowingCustomList
impl !UnwindSafe for IsFollowingCustomList
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