[][src]Enum in3_sys::state

#[repr(i32)]pub enum state {
    CTX_SUCCESS,
    CTX_WAITING_FOR_REQUIRED_CTX,
    CTX_WAITING_FOR_RESPONSE,
    CTX_ERROR,
}

The current state of the context.

you can check this state after each execute-call.

Variants

CTX_SUCCESS

< The ctx has a verified result.

CTX_WAITING_FOR_REQUIRED_CTX

< there are required contexts, which need to be resolved first

CTX_WAITING_FOR_RESPONSE

< the response is not set yet

CTX_ERROR

< the request has a error

Trait Implementations

impl Clone for state[src]

impl Copy for state[src]

impl Debug for state[src]

impl Eq for state[src]

impl Hash for state[src]

impl PartialEq<state> for state[src]

impl StructuralEq for state[src]

impl StructuralPartialEq for state[src]

Auto Trait Implementations

impl Send for state

impl Sync for state

impl Unpin for state

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.