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