pub struct ListBatchesOptions {
pub limit: Option<u32>,
pub offset: Option<u32>,
pub status: Option<BatchStatus>,
}Expand description
Options for listing batches.
Fields§
§limit: Option<u32>Maximum batches to return (default: 20, max: 100).
offset: Option<u32>Number of batches to skip.
status: Option<BatchStatus>Filter by status.
Implementations§
Trait Implementations§
Source§impl Clone for ListBatchesOptions
impl Clone for ListBatchesOptions
Source§fn clone(&self) -> ListBatchesOptions
fn clone(&self) -> ListBatchesOptions
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 ListBatchesOptions
impl Debug for ListBatchesOptions
Source§impl Default for ListBatchesOptions
impl Default for ListBatchesOptions
Source§fn default() -> ListBatchesOptions
fn default() -> ListBatchesOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListBatchesOptions
impl RefUnwindSafe for ListBatchesOptions
impl Send for ListBatchesOptions
impl Sync for ListBatchesOptions
impl Unpin for ListBatchesOptions
impl UnwindSafe for ListBatchesOptions
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