[][src]Enum zbus_polkit::policykit1::AuthorityFeatures

#[repr(u32)]pub enum AuthorityFeatures {
    TemporaryAuthorization,
}

Flags describing features supported by the Authority implementation.

Variants

TemporaryAuthorization

The authority supports temporary authorizations that can be obtained through authentication.

Trait Implementations

impl BitAnd<AuthorityFeatures> for AuthorityFeatures[src]

type Output = BitFlags<AuthorityFeatures>

The resulting type after applying the & operator.

impl BitOr<AuthorityFeatures> for AuthorityFeatures[src]

type Output = BitFlags<AuthorityFeatures>

The resulting type after applying the | operator.

impl BitXor<AuthorityFeatures> for AuthorityFeatures[src]

type Output = BitFlags<AuthorityFeatures>

The resulting type after applying the ^ operator.

impl Clone for AuthorityFeatures[src]

impl Copy for AuthorityFeatures[src]

impl Debug for AuthorityFeatures[src]

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

impl Not for AuthorityFeatures[src]

type Output = BitFlags<AuthorityFeatures>

The resulting type after applying the ! operator.

impl PartialEq<AuthorityFeatures> for AuthorityFeatures[src]

impl RawBitFlags for AuthorityFeatures[src]

impl RawBitFlags for AuthorityFeatures[src]

type Type = u32

The underlying integer type.

impl Serialize for AuthorityFeatures[src]

impl StructuralPartialEq for AuthorityFeatures[src]

impl TryFrom<OwnedValue> for AuthorityFeatures[src]

type Error = <u32 as TryFrom<OwnedValue>>::Error

The type returned in the event of a conversion error.

impl Type for AuthorityFeatures[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.