pub struct GetListsParams {
pub limit: Option<i64>,
pub cursor: Option<String>,
}Expand description
Parameters for get_lists.
Fields§
§limit: Option<i64>Maximum number of list keys returned.
cursor: Option<String>Cursor returned by a previous page; pass to fetch the next page.
Trait Implementations§
Source§impl Clone for GetListsParams
impl Clone for GetListsParams
Source§fn clone(&self) -> GetListsParams
fn clone(&self) -> GetListsParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetListsParams
impl Debug for GetListsParams
Source§impl Default for GetListsParams
impl Default for GetListsParams
Source§fn default() -> GetListsParams
fn default() -> GetListsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetListsParams
impl<'de> Deserialize<'de> for GetListsParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetListsParams
impl RefUnwindSafe for GetListsParams
impl Send for GetListsParams
impl Sync for GetListsParams
impl Unpin for GetListsParams
impl UnsafeUnpin for GetListsParams
impl UnwindSafe for GetListsParams
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