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