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: String,
pub name: String,
}
Expand description
Metadata for the batch operation
Fields§
§type_annotation: String
Type annotation
model: String
Model used for the batch
display_name: String
Display name of the batch
create_time: String
Creation time
update_time: String
Update time
batch_stats: BatchStats
Batch statistics
state: String
Current state of the batch
name: String
Name 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