[][src]Struct tensorflow_proto::xrt::xrt_chained_execute_op::Output

pub struct Output {
    pub output_index: i64,
    pub result_index: i64,
}

Represents an output of the XRTChainedExecute operation, which should originate by the output of this operation.

Fields

output_index: i64

The index in the value generated by this operation, which should be forwarded as XRTChainedExecute output. If output_index is zero (default value) the whole output will be used as result. This means that if the output shape is a tuple, the result will be the full tuple. Otherwise the real sub-tuple index will be output_index - 1.

result_index: i64

The index in the vector of the results returned by the XRTChainedExecute operation, where this output should be forwarded.

Trait Implementations

impl Clone for Output[src]

impl Debug for Output[src]

impl Default for Output[src]

impl Message for Output[src]

impl PartialEq<Output> for Output[src]

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