pub enum SecretActivityKind {
Open,
Close,
Variables,
Form,
Recovery,
Vault,
}Expand description
Category of an operation that temporarily requires secret access.
Variants§
Open
Opening or unlocking a lockbox.
Close
Closing or locking a lockbox.
Variables
Reading or changing variables.
Form
Reading or changing form records.
Recovery
Performing a recovery operation.
Vault
Accessing the local vault.
Implementations§
Trait Implementations§
Source§impl Clone for SecretActivityKind
impl Clone for SecretActivityKind
Source§fn clone(&self) -> SecretActivityKind
fn clone(&self) -> SecretActivityKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SecretActivityKind
Source§impl Debug for SecretActivityKind
impl Debug for SecretActivityKind
impl Eq for SecretActivityKind
Source§impl PartialEq for SecretActivityKind
impl PartialEq for SecretActivityKind
impl StructuralPartialEq for SecretActivityKind
Auto Trait Implementations§
impl Freeze for SecretActivityKind
impl RefUnwindSafe for SecretActivityKind
impl Send for SecretActivityKind
impl Sync for SecretActivityKind
impl Unpin for SecretActivityKind
impl UnsafeUnpin for SecretActivityKind
impl UnwindSafe for SecretActivityKind
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