[][src]Struct tensorflow_proto::compare_test::Large

pub struct Large {
    pub string: Option<String>,
    pub int64: Option<i64>,
    pub float: Option<f32>,
    pub bool: Option<bool>,
    pub enum: Option<i32>,
    pub int64s: Vec<i64>,
    pub medium: Option<Medium>,
    pub small: Option<Small>,
    pub double: Option<f64>,
    pub with_map: Option<WithMap>,
}

Fields

string: Option<String>int64: Option<i64>float: Option<f32>bool: Option<bool>enum: Option<i32>int64s: Vec<i64>medium: Option<Medium>small: Option<Small>double: Option<f64>with_map: Option<WithMap>

Implementations

impl Large[src]

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

Returns the value of string, or the default value if string is unset.

pub fn int64(&self) -> i64[src]

Returns the value of int64, or the default value if int64 is unset.

pub fn float(&self) -> f32[src]

Returns the value of float, or the default value if float is unset.

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

Returns the value of bool, or the default value if bool is unset.

pub fn enum(&self) -> Enum[src]

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

pub fn set_enum(&mut self, value: Enum)[src]

Sets enum to the provided enum value.

pub fn double(&self) -> f64[src]

Returns the value of double, or the default value if double is unset.

Trait Implementations

impl Clone for Large[src]

impl Debug for Large[src]

impl Default for Large[src]

impl Message for Large[src]

impl PartialEq<Large> for Large[src]

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