[][src]Struct tensorflow_serving_client::meta_graph::AssetFileDef

pub struct AssetFileDef {
    pub tensor_info: SingularPtrField<TensorInfo>,
    pub filename: String,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

tensor_info: SingularPtrField<TensorInfo>filename: Stringunknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl AssetFileDef[src]

pub fn new() -> AssetFileDef[src]

pub fn get_tensor_info(&self) -> &TensorInfo[src]

pub fn clear_tensor_info(&mut self)[src]

pub fn has_tensor_info(&self) -> bool[src]

pub fn set_tensor_info(&mut self, v: TensorInfo)[src]

pub fn mut_tensor_info(&mut self) -> &mut TensorInfo[src]

pub fn take_tensor_info(&mut self) -> TensorInfo[src]

pub fn get_filename(&self) -> &str[src]

pub fn clear_filename(&mut self)[src]

pub fn set_filename(&mut self, v: String)[src]

pub fn mut_filename(&mut self) -> &mut String[src]

pub fn take_filename(&mut self) -> String[src]

Trait Implementations

impl Clear for AssetFileDef[src]

impl Clone for AssetFileDef[src]

impl Debug for AssetFileDef[src]

impl Default for AssetFileDef[src]

impl<'a> Default for &'a AssetFileDef[src]

impl Message for AssetFileDef[src]

impl PartialEq<AssetFileDef> for AssetFileDef[src]

impl ProtobufValue for AssetFileDef[src]

impl StructuralPartialEq for AssetFileDef[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.