Struct grpcio_sys::grpc_op [−][src]
#[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 UnwindSafe for grpc_op
Blanket Implementations
Mutably borrows from an owned value. Read more