[][src]Struct tensorflow_proto::tensorflow::ExampleWithExtras

pub struct ExampleWithExtras {
    pub features: Option<Features>,
    pub extra1: String,
    pub extra2: i64,
    pub extra3: u32,
    pub extra4: u64,
    pub extra5: f64,
    pub extra6: Vec<f32>,
    pub extra7: Option<Features>,
}

This message is parallel to Example, but with additional fields to test unknown fields handling in example_proto_fast_parsing_test.cc.

Fields

features: Option<Features>extra1: Stringextra2: i64extra3: u32extra4: u64extra5: f64extra6: Vec<f32>extra7: Option<Features>

Trait Implementations

impl Clone for ExampleWithExtras[src]

impl Debug for ExampleWithExtras[src]

impl Default for ExampleWithExtras[src]

impl Message for ExampleWithExtras[src]

impl PartialEq<ExampleWithExtras> for ExampleWithExtras[src]

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