pub struct GetSetsParams {
pub limit: Option<i64>,
pub cursor: Option<String>,
}Expand description
Parameters for get_sets.
Fields§
§limit: Option<i64>Maximum number of entries returned.
cursor: Option<String>Cursor returned by a previous page; pass to fetch the next page.
Trait Implementations§
Source§impl Clone for GetSetsParams
impl Clone for GetSetsParams
Source§fn clone(&self) -> GetSetsParams
fn clone(&self) -> GetSetsParams
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 GetSetsParams
impl Debug for GetSetsParams
Source§impl Default for GetSetsParams
impl Default for GetSetsParams
Source§fn default() -> GetSetsParams
fn default() -> GetSetsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSetsParams
impl<'de> Deserialize<'de> for GetSetsParams
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 GetSetsParams
impl RefUnwindSafe for GetSetsParams
impl Send for GetSetsParams
impl Sync for GetSetsParams
impl Unpin for GetSetsParams
impl UnsafeUnpin for GetSetsParams
impl UnwindSafe for GetSetsParams
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