pub struct RevokeResult {
pub display_name: Option<String>,
pub exposed_keys: Vec<String>,
}Expand description
Result of revoking a recipient.
Fields§
§display_name: Option<String>The display name of the revoked recipient, if known.
exposed_keys: Vec<String>Keys the revoked recipient had access to (for rotation warnings).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RevokeResult
impl RefUnwindSafe for RevokeResult
impl Send for RevokeResult
impl Sync for RevokeResult
impl Unpin for RevokeResult
impl UnsafeUnpin for RevokeResult
impl UnwindSafe for RevokeResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more