pub struct InfoEntry {
pub key: String,
pub description: String,
pub example: Option<String>,
pub tags: Vec<String>,
pub rotation_interval_days: Option<u32>,
pub expires_at: Option<String>,
pub scoped_recipients: Vec<String>,
}Expand description
A single key entry in the vault info output.
Fields§
§key: String§description: String§example: Option<String>§rotation_interval_days: Option<u32>Soft rotation interval in days, if set (public schema metadata).
expires_at: Option<String>Hard expiry (ISO-8601 UTC), if set (public schema metadata).
scoped_recipients: Vec<String>Display names (or truncated pubkeys) of recipients with scoped overrides.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InfoEntry
impl RefUnwindSafe for InfoEntry
impl Send for InfoEntry
impl Sync for InfoEntry
impl Unpin for InfoEntry
impl UnsafeUnpin for InfoEntry
impl UnwindSafe for InfoEntry
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