[][src]Struct tensorflow_proto::tensorflow::RecvBufResponse

pub struct RecvBufResponse {
    pub buf_ptr: u64,
    pub num_bytes: i64,
    pub is_dead: bool,
    pub transport_options: Option<Any>,
    pub send_start_micros: i64,
    pub require_ack: bool,
}

Use of the fields below may vary by implementation. Comments give intended use.

Fields

buf_ptr: u64

Address of source field on server.

num_bytes: i64

Byte length of buf_ptr field, if set.

is_dead: bool

True if value is 'dead' like a tensor.

transport_options: Option<Any>

Optional, implementation-specific data.

send_start_micros: i64

Optional, for timeline.

require_ack: bool

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

Trait Implementations

impl Clone for RecvBufResponse[src]

impl Debug for RecvBufResponse[src]

impl Default for RecvBufResponse[src]

impl Message for RecvBufResponse[src]

impl PartialEq<RecvBufResponse> for RecvBufResponse[src]

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