pub struct SimpleListParameters {
pub after: Option<String>,
pub limit: Option<u32>,
}Fields§
§after: Option<String>Identifier for the last object from the previous pagination request.
limit: Option<u32>Number of objects to retrieve.
Trait Implementations§
Source§impl Clone for SimpleListParameters
impl Clone for SimpleListParameters
Source§fn clone(&self) -> SimpleListParameters
fn clone(&self) -> SimpleListParameters
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 SimpleListParameters
impl Debug for SimpleListParameters
Source§impl<'de> Deserialize<'de> for SimpleListParameters
impl<'de> Deserialize<'de> for SimpleListParameters
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 SimpleListParameters
impl PartialEq for SimpleListParameters
Source§impl Serialize for SimpleListParameters
impl Serialize for SimpleListParameters
impl StructuralPartialEq for SimpleListParameters
Auto Trait Implementations§
impl Freeze for SimpleListParameters
impl RefUnwindSafe for SimpleListParameters
impl Send for SimpleListParameters
impl Sync for SimpleListParameters
impl Unpin for SimpleListParameters
impl UnwindSafe for SimpleListParameters
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