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§
Source§impl Clone for RecvTensorResponse
impl Clone for RecvTensorResponse
Source§fn clone(&self) -> RecvTensorResponse
fn clone(&self) -> RecvTensorResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RecvTensorResponse
impl Debug for RecvTensorResponse
Source§impl Default for RecvTensorResponse
impl Default for RecvTensorResponse
Source§impl Message for RecvTensorResponse
impl Message for RecvTensorResponse
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for RecvTensorResponse
impl PartialEq for RecvTensorResponse
impl StructuralPartialEq for RecvTensorResponse
Auto Trait Implementations§
impl Freeze for RecvTensorResponse
impl RefUnwindSafe for RecvTensorResponse
impl Send for RecvTensorResponse
impl Sync for RecvTensorResponse
impl Unpin for RecvTensorResponse
impl UnwindSafe for RecvTensorResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more