Struct safe_app::ipc::resp::AuthGranted[][src]

pub struct AuthGranted {
    pub app_keys: AppKeys,
    pub bootstrap_config: Config,
    pub access_container_info: AccessContInfo,
    pub access_container_entry: HashMap<String, (MDataInfo, BTreeSet<Permission>), RandomState>,
}

It represents the authentication response.

Fields

The access keys.

The crust config. Useful to reuse bootstrap nodes and speed up access.

Access container info

Access container entry

Methods

impl AuthGranted
[src]

Consumes the object and returns the wrapped raw pointer

You're now responsible for freeing this memory once you're done.

Trait Implementations

impl<'de> Deserialize<'de> for AuthGranted
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for AuthGranted
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl ReprC for AuthGranted
[src]

C representation of the type

Error type

Converts from a raw type into an owned type by cloning data

impl Debug for AuthGranted
[src]

Formats the value using the given formatter. Read more

impl Eq for AuthGranted
[src]

impl PartialEq<AuthGranted> for AuthGranted
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Serialize for AuthGranted
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl Send for AuthGranted

impl Sync for AuthGranted