pub struct InPlaceTttDelta {
pub steps: Vec<TttStep>,
}Expand description
In-place TTT diff: an ordered trace of training steps.
Fields§
§steps: Vec<TttStep>Steps in causal order.
Trait Implementations§
Source§impl Clone for InPlaceTttDelta
impl Clone for InPlaceTttDelta
Source§fn clone(&self) -> InPlaceTttDelta
fn clone(&self) -> InPlaceTttDelta
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 InPlaceTttDelta
impl Debug for InPlaceTttDelta
Source§impl<'de> Deserialize<'de> for InPlaceTttDelta
impl<'de> Deserialize<'de> for InPlaceTttDelta
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 InPlaceTttDelta
impl PartialEq for InPlaceTttDelta
Source§fn eq(&self, other: &InPlaceTttDelta) -> bool
fn eq(&self, other: &InPlaceTttDelta) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InPlaceTttDelta
impl Serialize for InPlaceTttDelta
impl StructuralPartialEq for InPlaceTttDelta
Auto Trait Implementations§
impl Freeze for InPlaceTttDelta
impl RefUnwindSafe for InPlaceTttDelta
impl Send for InPlaceTttDelta
impl Sync for InPlaceTttDelta
impl Unpin for InPlaceTttDelta
impl UnsafeUnpin for InPlaceTttDelta
impl UnwindSafe for InPlaceTttDelta
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