pub struct InfoEntry {
pub key: String,
pub description: String,
pub example: Option<String>,
pub tags: Vec<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>§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