#[repr(C)]pub struct grpc_op_grpc_op_data_grpc_op_recv_message {
pub recv_message: *mut *mut grpc_byte_buffer,
}
Expand description
ownership of the byte buffer is moved to the caller; the caller must call grpc_byte_buffer_destroy on this value, or reuse it in a future op. The returned byte buffer will be NULL if trailing metadata was received instead of a message.
Fields§
§recv_message: *mut *mut grpc_byte_buffer
Trait Implementations§
source§impl Clone for grpc_op_grpc_op_data_grpc_op_recv_message
impl Clone for grpc_op_grpc_op_data_grpc_op_recv_message
source§fn clone(&self) -> grpc_op_grpc_op_data_grpc_op_recv_message
fn clone(&self) -> grpc_op_grpc_op_data_grpc_op_recv_message
Returns a copy 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 moreimpl Copy for grpc_op_grpc_op_data_grpc_op_recv_message
Auto Trait Implementations§
impl RefUnwindSafe for grpc_op_grpc_op_data_grpc_op_recv_message
impl !Send for grpc_op_grpc_op_data_grpc_op_recv_message
impl !Sync for grpc_op_grpc_op_data_grpc_op_recv_message
impl Unpin for grpc_op_grpc_op_data_grpc_op_recv_message
impl UnwindSafe for grpc_op_grpc_op_data_grpc_op_recv_message
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