[][src]Struct ironoxide::PrivateKeyRotationCheckResult

pub struct PrivateKeyRotationCheckResult {
    pub rotations_needed: EitherOrBoth<UserId, Vec1<GroupId>>,
}

Provides soft rotation capabilities for user and group keys

Fields

rotations_needed: EitherOrBoth<UserId, Vec1<GroupId>>

Methods

impl PrivateKeyRotationCheckResult[src]

pub fn user_rotation_needed(&self) -> Option<&UserId>[src]

pub fn group_rotation_needed(&self) -> Option<&Vec1<GroupId>>[src]

pub fn rotate_all(
    &self,
    ironoxide: &IronOxide,
    password: &str
) -> Result<(Option<UserUpdatePrivateKeyResult>, Option<Vec<GroupUpdatePrivateKeyResult>>)>
[src]

Rotate the private key of the calling user and all groups they are an administrator of where needs_rotation is true. Note that this function has the potential to take much longer than other functions, as rotation will be done individually on each user/group. If rotation is only needed for a specific group, it is strongly recommended to call user_rotate_private_key() or group_rotate_private_key() instead.

Arguments

  • ironoxide - IronOxide used to make authenticated requests for the calling user
  • password - Password to unlock the current user's user master key

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