[][src]Struct dash7_alp::data::Permissions

pub struct Permissions {
    pub encrypted: bool,
    pub executable: bool,
    pub user: UserPermissions,
    pub guest: UserPermissions,
}

Description of the permissions for a file for all users.

Fields

encrypted: bool

Whether data element is encrypted WARNING: This meaning might be deprecated

executable: bool

Whether data element is executable WARNING: This meaning might be deprecated

user: UserPermissions

Permissions for role "user"

guest: UserPermissions

Permissions for role "guest"

Methods

impl Permissions[src]

pub fn to_byte(self) -> u8[src]

pub fn from_byte(n: u8) -> Self[src]

Trait Implementations

impl Clone for Permissions[src]

impl Copy for Permissions[src]

impl Debug for Permissions[src]

impl PartialEq<Permissions> for Permissions[src]

impl StructuralPartialEq for Permissions[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> 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.