Struct zone::Admin[][src]

pub struct Admin {
    pub user: String,
    pub auths: BTreeSet<Auths>,
}

Delegation of zone administration to a named user.

Fields

user: String

The name of the user to receive authorization.

auths: BTreeSet<Auths>

Trait Implementations

impl Default for Admin[src]

Auto Trait Implementations

impl RefUnwindSafe for Admin

impl Send for Admin

impl Sync for Admin

impl Unpin for Admin

impl UnwindSafe for Admin

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