pub struct ListParams {
pub cursor: Option<String>,
pub meta: Option<HashMap<String, Value>>,
}
Expand description
Parameters for list requests (with pagination)
Fieldsยง
ยงcursor: Option<String>
Pagination cursor
meta: Option<HashMap<String, Value>>
Request metadata
Trait Implementationsยง
Sourceยงimpl Clone for ListParams
impl Clone for ListParams
Sourceยงfn clone(&self) -> ListParams
fn clone(&self) -> ListParams
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 ListParams
impl Debug for ListParams
Sourceยงimpl<'de> Deserialize<'de> for ListParams
impl<'de> Deserialize<'de> for ListParams
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
Sourceยงimpl PartialEq for ListParams
impl PartialEq for ListParams
Sourceยงimpl Serialize for ListParams
impl Serialize for ListParams
impl StructuralPartialEq for ListParams
Auto Trait Implementationsยง
impl Freeze for ListParams
impl RefUnwindSafe for ListParams
impl Send for ListParams
impl Sync for ListParams
impl Unpin for ListParams
impl UnwindSafe for ListParams
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