Struct in3_sys::in3_req[][src]

#[repr(C)]pub struct in3_req {
    pub signers_length: uint_fast8_t,
    pub len: uint_fast16_t,
    pub attempt: uint_fast16_t,
    pub id: u32,
    pub type_: req_type_t,
    pub verification_state: Type,
    pub error: *mut c_char,
    pub request_context: *mut json_ctx_t,
    pub response_context: *mut json_ctx_t,
    pub requests: *mut *mut d_token_t,
    pub responses: *mut *mut d_token_t,
    pub raw_response: *mut in3_response_t,
    pub signers: *mut u8,
    pub nodes: *mut node_match_t,
    pub cache: *mut cache_entry_t,
    pub required: *mut in3_req,
    pub client: *mut in3_t,
}

Fields

signers_length: uint_fast8_tlen: uint_fast16_tattempt: uint_fast16_tid: u32type_: req_type_tverification_state: Typeerror: *mut c_charrequest_context: *mut json_ctx_tresponse_context: *mut json_ctx_trequests: *mut *mut d_token_tresponses: *mut *mut d_token_traw_response: *mut in3_response_tsigners: *mut u8nodes: *mut node_match_tcache: *mut cache_entry_trequired: *mut in3_reqclient: *mut in3_t

Trait Implementations

impl Clone for in3_req[src]

impl Copy for in3_req[src]

impl Debug for in3_req[src]

Auto Trait Implementations

impl !Send for in3_req

impl !Sync for in3_req

impl Unpin for in3_req

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.