[][src]Struct condure::connection::Want

pub struct Want {
    pub sock_read: bool,
    pub sock_write: bool,
    pub zhttp_read: bool,
    pub zhttp_write: bool,
    pub zhttp_write_to: bool,
    pub timeout: Option<Instant>,
}

Fields

sock_read: boolsock_write: boolzhttp_read: boolzhttp_write: boolzhttp_write_to: booltimeout: Option<Instant>

Implementations

impl Want[src]

pub fn nothing() -> Self[src]

pub fn merge(&self, other: &Want) -> Want[src]

Auto Trait Implementations

impl RefUnwindSafe for Want

impl Send for Want

impl Sync for Want

impl Unpin for Want

impl UnwindSafe for Want

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, 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.