Struct jarida::Nonce[][src]

pub struct Nonce(_);

A source of Nonces (numbers that you only use once).

Implementations

impl Nonce[src]

pub fn random() -> Result<Nonce, UnspecifiedError>[src]

Generate a new, random source for Nonces.

pub fn to_le_bytes(&self) -> [u8; 16][src]

Encoded the present nonce value as a little-endian array of bytes.

pub fn from_le_bytes(bytes: [u8; 16]) -> Self[src]

Decode a Nonce for a little-endian array of bytes.

pub const fn len() -> usize[src]

The number of bytes needed to represent the Nonce.

Trait Implementations

impl Clone for Nonce[src]

impl Debug for Nonce[src]

impl NonceSequence for Nonce[src]

impl NonceSequence for &mut Nonce[src]

Auto Trait Implementations

impl RefUnwindSafe for Nonce

impl Send for Nonce

impl Sync for Nonce

impl Unpin for Nonce

impl UnwindSafe for Nonce

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,