pub struct BatchStartResult {
pub batch_id: BatchId,
pub status: BatchStatus,
pub warnings: Vec<BatchWarning>,
}Expand description
Result of starting a batch.
Fields§
§batch_id: BatchIdProvider batch id.
status: BatchStatusInitial status.
warnings: Vec<BatchWarning>Warnings.
Trait Implementations§
Source§impl Clone for BatchStartResult
impl Clone for BatchStartResult
Source§fn clone(&self) -> BatchStartResult
fn clone(&self) -> BatchStartResult
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 BatchStartResult
impl Debug for BatchStartResult
Source§impl<'de> Deserialize<'de> for BatchStartResult
impl<'de> Deserialize<'de> for BatchStartResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BatchStartResult
impl PartialEq for BatchStartResult
Source§impl Serialize for BatchStartResult
impl Serialize for BatchStartResult
impl StructuralPartialEq for BatchStartResult
Auto Trait Implementations§
impl Freeze for BatchStartResult
impl RefUnwindSafe for BatchStartResult
impl Send for BatchStartResult
impl Sync for BatchStartResult
impl Unpin for BatchStartResult
impl UnsafeUnpin for BatchStartResult
impl UnwindSafe for BatchStartResult
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