[][src]Struct tract_tensorflow::tfpb::tensorflow::SavedVariable

pub struct SavedVariable {
    pub dtype: i32,
    pub shape: Option<TensorShapeProto>,
    pub trainable: bool,
    pub synchronization: i32,
    pub aggregation: i32,
    pub name: String,
}

Represents a Variable that is initialized by loading the contents from the checkpoint.

Fields

dtype: i32shape: Option<TensorShapeProto>trainable: boolsynchronization: i32aggregation: i32name: String

Methods

impl SavedVariable[src]

pub fn dtype(&self) -> DataType[src]

Returns the enum value of dtype, or the default if the field is set to an invalid enum value.

pub fn set_dtype(&mut self, value: DataType)[src]

Sets dtype to the provided enum value.

pub fn synchronization(&self) -> VariableSynchronization[src]

Returns the enum value of synchronization, or the default if the field is set to an invalid enum value.

pub fn set_synchronization(&mut self, value: VariableSynchronization)[src]

Sets synchronization to the provided enum value.

pub fn aggregation(&self) -> VariableAggregation[src]

Returns the enum value of aggregation, or the default if the field is set to an invalid enum value.

pub fn set_aggregation(&mut self, value: VariableAggregation)[src]

Sets aggregation to the provided enum value.

Trait Implementations

impl Clone for SavedVariable[src]

impl Debug for SavedVariable[src]

impl Default for SavedVariable[src]

impl Message for SavedVariable[src]

impl PartialEq<SavedVariable> for SavedVariable[src]

impl StructuralPartialEq for SavedVariable[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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> DynClone for T where
    T: Clone
[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.