#[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 more