#[repr(i32)]pub enum CheckpointFormatVersion {
Legacy = 0,
V1 = 1,
V2 = 2,
}Expand description
A version number that identifies a different on-disk checkpoint format. Usually, each subclass of BaseSaverBuilder works with a particular version/format. However, it is possible that the same builder may be upgraded to support a newer checkpoint format in the future.
Variants§
Legacy = 0
Internal legacy format.
V1 = 1
Deprecated format: tf.Saver() which works with tensorflow::table::Table.
V2 = 2
Current format: more efficient.
Implementations§
Source§impl CheckpointFormatVersion
impl CheckpointFormatVersion
Sourcepub fn is_valid(value: i32) -> bool
pub fn is_valid(value: i32) -> bool
Returns true if value is a variant of CheckpointFormatVersion.
Sourcepub fn from_i32(value: i32) -> Option<CheckpointFormatVersion>
👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<CheckpointFormatVersion>
Use the TryFrom<i32> implementation instead
Converts an i32 to a CheckpointFormatVersion, or None if value is not a valid variant.
Source§impl CheckpointFormatVersion
impl CheckpointFormatVersion
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Trait Implementations§
Source§impl Clone for CheckpointFormatVersion
impl Clone for CheckpointFormatVersion
Source§fn clone(&self) -> CheckpointFormatVersion
fn clone(&self) -> CheckpointFormatVersion
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CheckpointFormatVersion
impl Debug for CheckpointFormatVersion
Source§impl Default for CheckpointFormatVersion
impl Default for CheckpointFormatVersion
Source§fn default() -> CheckpointFormatVersion
fn default() -> CheckpointFormatVersion
Source§impl From<CheckpointFormatVersion> for i32
impl From<CheckpointFormatVersion> for i32
Source§fn from(value: CheckpointFormatVersion) -> i32
fn from(value: CheckpointFormatVersion) -> i32
Source§impl Hash for CheckpointFormatVersion
impl Hash for CheckpointFormatVersion
Source§impl Ord for CheckpointFormatVersion
impl Ord for CheckpointFormatVersion
Source§fn cmp(&self, other: &CheckpointFormatVersion) -> Ordering
fn cmp(&self, other: &CheckpointFormatVersion) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for CheckpointFormatVersion
impl PartialEq for CheckpointFormatVersion
Source§impl PartialOrd for CheckpointFormatVersion
impl PartialOrd for CheckpointFormatVersion
Source§impl TryFrom<i32> for CheckpointFormatVersion
impl TryFrom<i32> for CheckpointFormatVersion
Source§type Error = UnknownEnumValue
type Error = UnknownEnumValue
Source§fn try_from(value: i32) -> Result<CheckpointFormatVersion, UnknownEnumValue>
fn try_from(value: i32) -> Result<CheckpointFormatVersion, UnknownEnumValue>
impl Copy for CheckpointFormatVersion
impl Eq for CheckpointFormatVersion
impl StructuralPartialEq for CheckpointFormatVersion
Auto Trait Implementations§
impl Freeze for CheckpointFormatVersion
impl RefUnwindSafe for CheckpointFormatVersion
impl Send for CheckpointFormatVersion
impl Sync for CheckpointFormatVersion
impl Unpin for CheckpointFormatVersion
impl UnsafeUnpin for CheckpointFormatVersion
impl UnwindSafe for CheckpointFormatVersion
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
Source§impl<T> ClampCast for Twhere
T: PartialOrd + Copy + 'static,
impl<T> ClampCast for Twhere
T: PartialOrd + Copy + 'static,
fn clamp_cast<O>(self) -> O
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more