[][src]Struct tensorflow_proto::tensorflow::RecvTensorResponse

pub struct RecvTensorResponse {
    pub tensor: Option<TensorProto>,
    pub is_dead: bool,
    pub send_start_micros: i64,
    pub transport_options: Option<Any>,
    pub require_ack: bool,
}

Fields

tensor: Option<TensorProto>

The tensor as a proto.

is_dead: bool

If true, this tensor was the output of a dead node, and the content is invalid.

send_start_micros: i64

The time at which tensor was available and started to be returned.

transport_options: Option<Any>

Optional additional information about how to receive the tensor, e.g. in the event that RecvTensorRequest.dma_ok was true.

require_ack: bool

Whether the receiver should send a MarkRecvFinishedRequest to the sender to ack the message.

Trait Implementations

impl Clone for RecvTensorResponse[src]

impl Debug for RecvTensorResponse[src]

impl Default for RecvTensorResponse[src]

impl Message for RecvTensorResponse[src]

impl PartialEq<RecvTensorResponse> for RecvTensorResponse[src]

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