[][src]Struct safe_core::ffi::ipc::resp::AuthGranted

#[repr(C)]pub struct AuthGranted {
    pub app_keys: AppKeys,
    pub access_container_info: AccessContInfo,
    pub access_container_entry: AccessContainerEntry,
    pub bootstrap_config: *const u8,
    pub bootstrap_config_len: usize,
}

Represents the authentication response.

Fields

app_keys: AppKeys

The access keys.

access_container_info: AccessContInfo

Access container info.

access_container_entry: AccessContainerEntry

Access container entry.

bootstrap_config: *const u8

QuicP2P bootstrap config.

bootstrap_config_len: usize

bootstrap_config's length.

Trait Implementations

impl Drop for AuthGranted[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,