pub struct BatchMetadata {
pub type_annotation: String,
pub model: String,
pub display_name: String,
pub create_time: String,
pub update_time: String,
pub batch_stats: BatchStats,
pub state: BatchState,
pub name: String,
pub output: Option<OutputConfig>,
}Expand description
Metadata for the batch operation
Fields§
§type_annotation: StringType annotation
model: StringModel used for the batch
display_name: StringDisplay name of the batch
create_time: StringCreation time
update_time: StringUpdate time
batch_stats: BatchStatsBatch statistics
state: BatchStateCurrent state of the batch
name: StringName of the batch (duplicate)
output: Option<OutputConfig>The output configuration for the batch.
Trait Implementations§
Source§impl Clone for BatchMetadata
impl Clone for BatchMetadata
Source§fn clone(&self) -> BatchMetadata
fn clone(&self) -> BatchMetadata
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 BatchMetadata
impl Debug for BatchMetadata
Source§impl<'de> Deserialize<'de> for BatchMetadata
impl<'de> Deserialize<'de> for BatchMetadata
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
Auto Trait Implementations§
impl Freeze for BatchMetadata
impl RefUnwindSafe for BatchMetadata
impl Send for BatchMetadata
impl Sync for BatchMetadata
impl Unpin for BatchMetadata
impl UnwindSafe for BatchMetadata
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