pub struct ListBatchesQuery {
pub after: Option<String>,
pub limit: Option<u32>,
}Expand description
Query parameters for listing batches.
Fields§
§after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the list.
limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
Trait Implementations§
Source§impl Clone for ListBatchesQuery
impl Clone for ListBatchesQuery
Source§fn clone(&self) -> ListBatchesQuery
fn clone(&self) -> ListBatchesQuery
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 ListBatchesQuery
impl Debug for ListBatchesQuery
Source§impl Default for ListBatchesQuery
impl Default for ListBatchesQuery
Source§fn default() -> ListBatchesQuery
fn default() -> ListBatchesQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBatchesQuery
impl PartialEq for ListBatchesQuery
Source§impl Serialize for ListBatchesQuery
impl Serialize for ListBatchesQuery
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ListBatchesQuery
Auto Trait Implementations§
impl Freeze for ListBatchesQuery
impl RefUnwindSafe for ListBatchesQuery
impl Send for ListBatchesQuery
impl Sync for ListBatchesQuery
impl Unpin for ListBatchesQuery
impl UnsafeUnpin for ListBatchesQuery
impl UnwindSafe for ListBatchesQuery
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