pub struct ActiveModelStep {
pub model_step_id: String,
pub step_index: usize,
pub started_at_ms: i64,
}Expand description
The model step currently in flight for an active execution.
Fields§
§model_step_id: String§step_index: usize§started_at_ms: i64Trait Implementations§
Source§impl Clone for ActiveModelStep
impl Clone for ActiveModelStep
Source§fn clone(&self) -> ActiveModelStep
fn clone(&self) -> ActiveModelStep
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 ActiveModelStep
impl Debug for ActiveModelStep
Source§impl<'de> Deserialize<'de> for ActiveModelStep
impl<'de> Deserialize<'de> for ActiveModelStep
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 Eq for ActiveModelStep
Source§impl PartialEq for ActiveModelStep
impl PartialEq for ActiveModelStep
Source§impl Serialize for ActiveModelStep
impl Serialize for ActiveModelStep
impl StructuralPartialEq for ActiveModelStep
Auto Trait Implementations§
impl Freeze for ActiveModelStep
impl RefUnwindSafe for ActiveModelStep
impl Send for ActiveModelStep
impl Sync for ActiveModelStep
impl Unpin for ActiveModelStep
impl UnsafeUnpin for ActiveModelStep
impl UnwindSafe for ActiveModelStep
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