pub struct BatchListParams {
pub limit: Option<u32>,
pub after: Option<String>,
}Expand description
Filters for crate::resources::Batches::list.
Fields§
§limit: Option<u32>Page size.
after: Option<String>Cursor: return batches after this id.
Trait Implementations§
Source§impl Clone for BatchListParams
impl Clone for BatchListParams
Source§fn clone(&self) -> BatchListParams
fn clone(&self) -> BatchListParams
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 BatchListParams
impl Debug for BatchListParams
Source§impl Default for BatchListParams
impl Default for BatchListParams
Source§fn default() -> BatchListParams
fn default() -> BatchListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchListParams
impl RefUnwindSafe for BatchListParams
impl Send for BatchListParams
impl Sync for BatchListParams
impl Unpin for BatchListParams
impl UnsafeUnpin for BatchListParams
impl UnwindSafe for BatchListParams
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