[][src]Struct yubihsm::domain::Domain

pub struct Domain { /* fields omitted */ }

Logical partition within the YubiHSM 2, allowing several clients to access the same device but access controlled on a domain-by-domain basis. For more information, see the Yubico documentation:

https://developers.yubico.com/YubiHSM2/Concepts/Domain.html

Implementations

impl Domain[src]

pub const DOM1: Domain[src]

pub const DOM2: Domain[src]

pub const DOM3: Domain[src]

pub const DOM4: Domain[src]

pub const DOM5: Domain[src]

pub const DOM6: Domain[src]

pub const DOM7: Domain[src]

pub const DOM8: Domain[src]

pub const DOM9: Domain[src]

pub const DOM10: Domain[src]

pub const DOM11: Domain[src]

pub const DOM12: Domain[src]

pub const DOM13: Domain[src]

pub const DOM14: Domain[src]

pub const DOM15: Domain[src]

pub const DOM16: Domain[src]

pub const fn empty() -> Domain[src]

Returns an empty set of flags

pub const fn all() -> Domain[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u16[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u16) -> Option<Domain>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u16) -> Domain[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u16) -> Domain[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: Domain) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: Domain) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: Domain)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: Domain)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: Domain)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: Domain, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

impl Domain[src]

pub fn at(index: usize) -> Result<Self, Error>[src]

Get the Domain object corresponding to the given-numbered domain e.g. Domain::at(1) returns Domain::DOM1.

Trait Implementations

impl Binary for Domain[src]

impl BitAnd<Domain> for Domain[src]

type Output = Domain

The resulting type after applying the & operator.

pub fn bitand(self, other: Domain) -> Domain[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<Domain> for Domain[src]

pub fn bitand_assign(&mut self, other: Domain)[src]

Disables all flags disabled in the set.

impl BitOr<Domain> for Domain[src]

type Output = Domain

The resulting type after applying the | operator.

pub fn bitor(self, other: Domain) -> Domain[src]

Returns the union of the two sets of flags.

impl BitOrAssign<Domain> for Domain[src]

pub fn bitor_assign(&mut self, other: Domain)[src]

Adds the set of flags.

impl BitXor<Domain> for Domain[src]

type Output = Domain

The resulting type after applying the ^ operator.

pub fn bitxor(self, other: Domain) -> Domain[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<Domain> for Domain[src]

pub fn bitxor_assign(&mut self, other: Domain)[src]

Toggles the set of flags.

impl Clone for Domain[src]

impl Copy for Domain[src]

impl Debug for Domain[src]

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

impl Eq for Domain[src]

impl Extend<Domain> for Domain[src]

impl FromIterator<Domain> for Domain[src]

impl Hash for Domain[src]

impl LowerHex for Domain[src]

impl Not for Domain[src]

type Output = Domain

The resulting type after applying the ! operator.

pub fn not(self) -> Domain[src]

Returns the complement of this set of flags.

impl Octal for Domain[src]

impl Ord for Domain[src]

impl PartialEq<Domain> for Domain[src]

impl PartialOrd<Domain> for Domain[src]

impl Serialize for Domain[src]

impl StructuralEq for Domain[src]

impl StructuralPartialEq for Domain[src]

impl Sub<Domain> for Domain[src]

type Output = Domain

The resulting type after applying the - operator.

pub fn sub(self, other: Domain) -> Domain[src]

Returns the set difference of the two sets of flags.

impl SubAssign<Domain> for Domain[src]

pub fn sub_assign(&mut self, other: Domain)[src]

Disables all flags enabled in the set.

impl UpperHex for Domain[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> Conv for T

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

impl<T> FmtForward for T

impl<T> From<T> for T[src]

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

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,