Seed

Struct Seed 

Source
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§

Source§

impl<'a> Debug for Seed<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'bytes: 'a, 'a, Ctx> Decode<'bytes, Ctx> for Seed<'a>

Source§

fn decode( __d777: &mut Decoder<'bytes>, __ctx777: &mut Ctx, ) -> Result<Seed<'a>, Error>

Decode a value using the given Decoder. Read more
Source§

fn nil() -> Option<Self>

If possible, return a nil value of Self. Read more
Source§

impl<'a, Ctx> Encode<Ctx> for Seed<'a>

Source§

fn encode<__W777>( &self, __e777: &mut Encoder<__W777>, __ctx777: &mut Ctx, ) -> Result<(), Error<__W777::Error>>
where __W777: Write,

Encode a value of this type using the given Encoder. Read more
Source§

fn is_nil(&self) -> bool

Is this value of Self a nil value? Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.