pub struct BatchListOptions {
pub limit: Option<usize>,
pub cursor: Option<String>,
pub provider_options: ProviderOptions,
pub headers: Headers,
pub cancellation: CancellationToken,
}Expand description
Options for listing batches.
Fields§
§limit: Option<usize>Page size.
cursor: Option<String>Cursor from a previous page.
provider_options: ProviderOptionsProvider-specific options keyed by provider name.
headers: HeadersAdditional request headers.
cancellation: CancellationTokenCancellation token.
Trait Implementations§
Source§impl Clone for BatchListOptions
impl Clone for BatchListOptions
Source§fn clone(&self) -> BatchListOptions
fn clone(&self) -> BatchListOptions
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 BatchListOptions
impl Debug for BatchListOptions
Source§impl Default for BatchListOptions
impl Default for BatchListOptions
Source§fn default() -> BatchListOptions
fn default() -> BatchListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchListOptions
impl RefUnwindSafe for BatchListOptions
impl Send for BatchListOptions
impl Sync for BatchListOptions
impl Unpin for BatchListOptions
impl UnsafeUnpin for BatchListOptions
impl UnwindSafe for BatchListOptions
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