pub struct BatchOperationOptions {
pub batch_id: BatchId,
pub provider_options: ProviderOptions,
pub headers: Headers,
pub cancellation: CancellationToken,
}Expand description
Options for status, results and cancel calls.
Fields§
§batch_id: BatchIdThe batch job.
provider_options: ProviderOptionsProvider-specific options keyed by provider name.
headers: HeadersAdditional request headers.
cancellation: CancellationTokenCancellation token.
Implementations§
Trait Implementations§
Source§impl Clone for BatchOperationOptions
impl Clone for BatchOperationOptions
Source§fn clone(&self) -> BatchOperationOptions
fn clone(&self) -> BatchOperationOptions
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 moreAuto Trait Implementations§
impl Freeze for BatchOperationOptions
impl RefUnwindSafe for BatchOperationOptions
impl Send for BatchOperationOptions
impl Sync for BatchOperationOptions
impl Unpin for BatchOperationOptions
impl UnsafeUnpin for BatchOperationOptions
impl UnwindSafe for BatchOperationOptions
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