pub struct TrainingBatch {
pub offset_ms: f64,
pub batch: IrBatch,
pub annotation: Option<String>,
}Expand description
An IR batch within a training record.
Fields§
§offset_ms: f64Relative timestamp within the session (ms).
batch: IrBatchThe IR batch.
annotation: Option<String>Optional annotation for this specific batch.
Trait Implementations§
Source§impl Clone for TrainingBatch
impl Clone for TrainingBatch
Source§fn clone(&self) -> TrainingBatch
fn clone(&self) -> TrainingBatch
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 TrainingBatch
impl Debug for TrainingBatch
Source§impl<'de> Deserialize<'de> for TrainingBatch
impl<'de> Deserialize<'de> for TrainingBatch
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 TrainingBatch
impl RefUnwindSafe for TrainingBatch
impl Send for TrainingBatch
impl Sync for TrainingBatch
impl Unpin for TrainingBatch
impl UnsafeUnpin for TrainingBatch
impl UnwindSafe for TrainingBatch
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