[][src]Struct grpcio_sys::grpc_op

#[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,
}

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

impl Clone for grpc_op[src]

impl Copy for grpc_op[src]

impl Debug for grpc_op[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.