[][src]Enum ironoxide::InitAndRotationCheck

pub enum InitAndRotationCheck<T> {
    NoRotationNeeded(T),
    RotationNeeded(T, PrivateKeyRotationCheckResult),
}

Result of calling initialize_check_rotation

Variants

NoRotationNeeded(T)

Initialization succeeded, and no requests for private key rotations were present

RotationNeeded(T, PrivateKeyRotationCheckResult)

Initialization succeeded, but some keys should be rotated

Methods

impl<T> InitAndRotationCheck<T>[src]

pub fn discard_check(self) -> T[src]

Caller asked to check rotation on initialize, but doesn't want to handle the result. Consider using initialize instead.

pub fn new_rotation_needed(
    io: T,
    rotations_needed: EitherOrBoth<UserId, Vec1<GroupId>>
) -> InitAndRotationCheck<T>
[src]

Convenience constructor to make an InitAndRotationCheck::RotationNeeded from an IronOxide and an EitherOrBoth<UserId, Vec1> directly.

Trait Implementations

impl<T: Clone> Clone for InitAndRotationCheck<T>[src]

impl<T: Debug> Debug for InitAndRotationCheck<T>[src]

impl<T: Eq> Eq for InitAndRotationCheck<T>[src]

impl<T: Hash> Hash for InitAndRotationCheck<T>[src]

impl<T: PartialEq> PartialEq<InitAndRotationCheck<T>> for InitAndRotationCheck<T>[src]

impl<T> StructuralEq for InitAndRotationCheck<T>[src]

impl<T> StructuralPartialEq for InitAndRotationCheck<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for InitAndRotationCheck<T> where
    T: RefUnwindSafe

impl<T> Send for InitAndRotationCheck<T> where
    T: Send

impl<T> Sync for InitAndRotationCheck<T> where
    T: Sync

impl<T> Unpin for InitAndRotationCheck<T> where
    T: Unpin

impl<T> UnwindSafe for InitAndRotationCheck<T> where
    T: UnwindSafe

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

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