Struct grpcio_sys::grpc_op
source · #[repr(C)]pub struct grpc_op {
pub op: grpc_op_type,
pub flags: u32,
pub reserved: *mut c_void,
pub data: grpc_op_grpc_op_data,
}
Expand description
Operation data: one field for each op type (except SEND_CLOSE_FROM_CLIENT which has no arguments)
Fields§
§op: grpc_op_type
Operation type, as defined by grpc_op_type
flags: u32
Write flags bitset for grpc_begin_messages
reserved: *mut c_void
Reserved for future usage
data: grpc_op_grpc_op_data
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for grpc_op
impl !Send for grpc_op
impl !Sync for grpc_op
impl Unpin for grpc_op
impl UnwindSafe for grpc_op
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