pub struct CheckpointOut {
pub metrics: Box<MetricOut>,
pub step_number: i32,
pub created_at: i32,
}Fields§
§metrics: Box<MetricOut>§step_number: i32The step number that the checkpoint was created at.
created_at: i32The UNIX timestamp (in seconds) for when the checkpoint was created.
Implementations§
Source§impl CheckpointOut
impl CheckpointOut
Trait Implementations§
Source§impl Clone for CheckpointOut
impl Clone for CheckpointOut
Source§fn clone(&self) -> CheckpointOut
fn clone(&self) -> CheckpointOut
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 CheckpointOut
impl Debug for CheckpointOut
Source§impl Default for CheckpointOut
impl Default for CheckpointOut
Source§fn default() -> CheckpointOut
fn default() -> CheckpointOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckpointOut
impl<'de> Deserialize<'de> for CheckpointOut
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 CheckpointOut
impl PartialEq for CheckpointOut
Source§impl Serialize for CheckpointOut
impl Serialize for CheckpointOut
impl StructuralPartialEq for CheckpointOut
Auto Trait Implementations§
impl Freeze for CheckpointOut
impl RefUnwindSafe for CheckpointOut
impl Send for CheckpointOut
impl Sync for CheckpointOut
impl Unpin for CheckpointOut
impl UnsafeUnpin for CheckpointOut
impl UnwindSafe for CheckpointOut
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