[][src]Struct safe_app::ipc::AuthReq

pub struct AuthReq {
    pub app: AppExchangeInfo,
    pub app_container: bool,
    pub app_permissions: AppPermissions,
    pub containers: HashMap<String, BTreeSet<Permission>, RandomState>,
}

Represents an authorisation request.

Fields

app: AppExchangeInfo

The application identifier for this request

app_container: bool

true if the app wants dedicated container for itself. false otherwise.

app_permissions: AppPermissions

Stores app permissions, e.g. allowing to work with the user's coin balance.

containers: HashMap<String, BTreeSet<Permission>, RandomState>

The list of containers the app wishes to access (and desired permissions).

Methods

impl AuthReq[src]

pub fn into_repr_c(self) -> Result<AuthReq, IpcError>[src]

Construct FFI wrapper for the native Rust object, consuming self.

Trait Implementations

impl Clone for AuthReq[src]

impl Debug for AuthReq[src]

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

impl Eq for AuthReq[src]

impl PartialEq<AuthReq> for AuthReq[src]

impl ReprC for AuthReq[src]

type C = *const AuthReq

C representation of the type.

type Error = IpcError

Error type.

unsafe fn clone_from_repr_c(
    repr_c: <AuthReq as ReprC>::C
) -> Result<AuthReq, <AuthReq as ReprC>::Error>
[src]

Constructs the object from the FFI counterpart.

After calling this function, the subobjects memory is owned by the resulting object.

impl Serialize for AuthReq[src]

impl StructuralEq for AuthReq[src]

impl StructuralPartialEq for AuthReq[src]

Auto Trait Implementations

impl RefUnwindSafe for AuthReq

impl Send for AuthReq

impl Sync for AuthReq

impl Unpin for AuthReq

impl UnwindSafe for AuthReq

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> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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