[][src]Struct grpcio::WriteFlags

pub struct WriteFlags { /* fields omitted */ }

Flags for write operations.

Methods

impl WriteFlags
[src]

pub fn buffer_hint(self, need_buffered: bool) -> WriteFlags
[src]

Hint that the write may be buffered and need not go out on the wire immediately.

gRPC is free to buffer the message until the next non-buffered write, or until write stream completion, but it need not buffer completely or at all.

pub fn force_no_compress(self, no_compress: bool) -> WriteFlags
[src]

Force compression to be disabled.

pub fn get_buffer_hint(self) -> bool
[src]

Get whether buffer hint is enabled.

pub fn get_force_no_compress(self) -> bool
[src]

Get whether compression is disabled.

Trait Implementations

impl Copy for WriteFlags
[src]

impl Default for WriteFlags
[src]

impl Clone for WriteFlags
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for WriteFlags

impl Sync for WriteFlags

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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