revault_lockbox_api 0.0.2

reVault lockbox API to create and manage lockboxes
Documentation
1
2
3
4
5
6
7
8
/// Sensitivity marker for variables stored in a lockbox.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum VariableSensitivity {
    /// Plain variable value.
    Normal,
    /// Secret variable value stored in secure pages.
    Secret,
}