[][src]Struct safe_core::core_structs::AppAccess

pub struct AppAccess {
    pub sign_key: PublicKey,
    pub permissions: MDataPermissionSet,
    pub name: Option<String>,
    pub app_id: Option<String>,
}

Information about an app that has access to an MD through sign_key.

Fields

sign_key: PublicKey

App's or user's public key

permissions: MDataPermissionSet

A list of permissions

name: Option<String>

App's user-facing name

app_id: Option<String>

App id

Implementations

impl AppAccess[src]

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

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

Trait Implementations

impl Debug for AppAccess[src]

impl ReprC for AppAccess[src]

type C = *const AppAccess

C representation of the type.

type Error = IpcError

Error type.

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> DebugAny for T where
    T: Any + Debug

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