[][src]Struct tensorflow_proto::tensorflow::CheckpointState

pub struct CheckpointState {
    pub model_checkpoint_path: String,
    pub all_model_checkpoint_paths: Vec<String>,
    pub all_model_checkpoint_timestamps: Vec<f64>,
    pub last_preserved_timestamp: f64,
}

Protocol buffer representing the checkpoint state.

Fields

model_checkpoint_path: String

Path to the most-recent model checkpoint.

all_model_checkpoint_paths: Vec<String>

Paths to all not-yet-deleted model checkpoints, sorted from oldest to newest. Note that the value of model_checkpoint_path should be the last item in this list.

all_model_checkpoint_timestamps: Vec<f64>

Unix timestamps corresponding to all_model_checkpoint_paths, indicating when each checkpoint was created.

last_preserved_timestamp: f64

Unix timestamp indicating the creation time for the last preserved checkpoint.

Trait Implementations

impl Clone for CheckpointState[src]

impl Debug for CheckpointState[src]

impl Default for CheckpointState[src]

impl Message for CheckpointState[src]

impl PartialEq<CheckpointState> for CheckpointState[src]

impl StructuralPartialEq for CheckpointState[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.