pub struct GetFollowedCustomLists {
pub limit: Option<u32>,
pub offset: Option<u32>,
/* private fields */
}
Fields§
§limit: Option<u32>
Maximum number of custom lists to return.
Default: 10.
offset: Option<u32>
Number of custom lists to offset.
Default: 0.
Implementations§
Source§impl GetFollowedCustomLists
impl GetFollowedCustomLists
Sourcepub async fn send(&self) -> CustomListListResponse
pub async fn send(&self) -> CustomListListResponse
Send the request.
Trait Implementations§
Source§impl Clone for GetFollowedCustomLists
impl Clone for GetFollowedCustomLists
Source§fn clone(&self) -> GetFollowedCustomLists
fn clone(&self) -> GetFollowedCustomLists
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 GetFollowedCustomLists
impl Debug for GetFollowedCustomLists
Source§impl Default for GetFollowedCustomLists
impl Default for GetFollowedCustomLists
Source§fn default() -> GetFollowedCustomLists
fn default() -> GetFollowedCustomLists
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetFollowedCustomLists
impl !RefUnwindSafe for GetFollowedCustomLists
impl !Send for GetFollowedCustomLists
impl !Sync for GetFollowedCustomLists
impl Unpin for GetFollowedCustomLists
impl !UnwindSafe for GetFollowedCustomLists
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