pub struct BatchMetadata {
pub type_annotation: String,
pub model: Model,
pub display_name: String,
pub create_time: OffsetDateTime,
pub update_time: OffsetDateTime,
pub batch_stats: BatchStats,
pub state: BatchState,
pub name: String,
}Expand description
Metadata for the batch operation
Fields§
§type_annotation: StringType annotation
model: ModelModel used for the batch
display_name: StringDisplay name of the batch
create_time: OffsetDateTimeCreation time
update_time: OffsetDateTimeUpdate time
batch_stats: BatchStatsBatch statistics
state: BatchStateCurrent state of the batch
name: StringName of the batch (duplicate)
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