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,
}
Expand description
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§
Source§impl Clone for RecvBufResponse
impl Clone for RecvBufResponse
Source§fn clone(&self) -> RecvBufResponse
fn clone(&self) -> RecvBufResponse
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 RecvBufResponse
impl Debug for RecvBufResponse
Source§impl Default for RecvBufResponse
impl Default for RecvBufResponse
Source§impl Message for RecvBufResponse
impl Message for RecvBufResponse
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 RecvBufResponse
impl PartialEq for RecvBufResponse
impl StructuralPartialEq for RecvBufResponse
Auto Trait Implementations§
impl Freeze for RecvBufResponse
impl RefUnwindSafe for RecvBufResponse
impl Send for RecvBufResponse
impl Sync for RecvBufResponse
impl Unpin for RecvBufResponse
impl UnwindSafe for RecvBufResponse
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