[][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 Clone for WriteFlags[src]

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

Performs copy-assignment from source. Read more

impl Default for WriteFlags[src]

impl Copy for WriteFlags[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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