[][src]Struct isilon::models::NamespaceAcl

pub struct NamespaceAcl {
    pub acl: Option<Vec<AclObject>>,
    pub authoritative: Option<String>,
    pub group: Option<MemberObject>,
    pub mode: Option<String>,
    pub owner: Option<MemberObject>,
}

Fields

acl: Option<Vec<AclObject>>

Provides the JSON array of access rights.

authoritative: Option<String>

If the directory has access rights set, then this field is returned as acl. If the directory has POSIX permissions set, then this field is returned as mode.

group: Option<MemberObject>

Provides the JSON object for the group persona of the owner.

mode: Option<String>

Provides the POSIX mode.

owner: Option<MemberObject>

Provides the JSON object for the owner persona.

Trait Implementations

impl Debug for NamespaceAcl[src]

impl Serialize for NamespaceAcl[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T