pub struct TttStep {
pub step_id: u32,
pub deltas: BTreeMap<String, Vec<f32>>,
}Expand description
One in-place TTT step.
Fields§
§step_id: u32Step counter (0-based).
deltas: BTreeMap<String, Vec<f32>>Per-parameter delta applied at this step.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TttStep
impl<'de> Deserialize<'de> for TttStep
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
impl StructuralPartialEq for TttStep
Auto Trait Implementations§
impl Freeze for TttStep
impl RefUnwindSafe for TttStep
impl Send for TttStep
impl Sync for TttStep
impl Unpin for TttStep
impl UnsafeUnpin for TttStep
impl UnwindSafe for TttStep
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