pub struct AgeStanza<'a> {
pub tag: &'a str,
pub args: Vec<&'a str>,
/* private fields */
}
Expand description
A section of the age header that encapsulates the file key as encrypted to a specific recipient.
This is the reference type; see Stanza
for the owned type.
Fields§
§tag: &'a str
A tag identifying this stanza type.
args: Vec<&'a str>
Zero or more arguments.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for AgeStanza<'a>
impl<'a> RefUnwindSafe for AgeStanza<'a>
impl<'a> Send for AgeStanza<'a>
impl<'a> Sync for AgeStanza<'a>
impl<'a> Unpin for AgeStanza<'a>
impl<'a> UnwindSafe for AgeStanza<'a>
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