[][src]Enum yubihsm::audit::AuditOption

#[repr(u8)]
pub enum AuditOption {
    Off,
    On,
    Fix,
}

Auditing policy options

Variants

Off

Audit logging disabled

On

Audit logging enabled

Fix

Audit logging permanently enabled; not possible to turn off

Methods

impl AuditOption[src]

pub fn from_u8(byte: u8) -> Result<Self, Error>[src]

Convert an unsigned byte into a object::Type (if valid)

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

Serialize this object type as a byte

Trait Implementations

impl Clone for AuditOption[src]

impl Copy for AuditOption[src]

impl Eq for AuditOption[src]

impl PartialEq<AuditOption> for AuditOption[src]

impl Debug for AuditOption[src]

impl Hash for AuditOption[src]

impl StructuralPartialEq for AuditOption[src]

impl StructuralEq for AuditOption[src]

impl Serialize for AuditOption[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self