pub struct Seed<'a> {
pub payload: &'a [u8],
pub creation_date: Option<Timestamp>,
pub name: Option<&'a str>,
pub note: Option<&'a str>,
}Expand description
Cryptographic Seed.
Fields§
§payload: &'a [u8]Seed entropy.
creation_date: Option<Timestamp>Creation date.
name: Option<&'a str>Short name for the seed.
note: Option<&'a str>Description of the seed.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Seed<'a>
impl<'a> RefUnwindSafe for Seed<'a>
impl<'a> Send for Seed<'a>
impl<'a> Sync for Seed<'a>
impl<'a> Unpin for Seed<'a>
impl<'a> UnwindSafe for Seed<'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