pub struct UserCustomLists {
pub user_id: Uuid,
limit: Option<u32>,
offset: Option<u32>,
/* private fields */
}
Fields§
§user_id: Uuid
§limit: Option<u32>
§offset: Option<u32>
Implementations§
Source§impl UserCustomLists
impl UserCustomLists
Sourcepub async fn send(&self) -> CustomListListResponse
pub async fn send(&self) -> CustomListListResponse
Send the request.
Trait Implementations§
Source§impl Clone for UserCustomLists
impl Clone for UserCustomLists
Source§fn clone(&self) -> UserCustomLists
fn clone(&self) -> UserCustomLists
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 UserCustomLists
impl Debug for UserCustomLists
Auto Trait Implementations§
impl Freeze for UserCustomLists
impl !RefUnwindSafe for UserCustomLists
impl !Send for UserCustomLists
impl !Sync for UserCustomLists
impl Unpin for UserCustomLists
impl !UnwindSafe for UserCustomLists
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