[][src]Enum libsqrl::storage::Block

pub enum Block {
    Type1 {
        pt_length: u16,
        aes_gcm_iv: [u8; 12],
        scrypt_random_salt: [u8; 16],
        scrypt_log_n_factor: u8,
        scrypt_iteration_count: u32,
        option_flags: u16,
        hint_length: u8,
        pw_verify_sec: u8,
        idle_timeout_min: u16,
    },
}

Variants

Type1

Fields of Type1

pt_length: u16aes_gcm_iv: [u8; 12]scrypt_random_salt: [u8; 16]scrypt_log_n_factor: u8scrypt_iteration_count: u32option_flags: u16hint_length: u8pw_verify_sec: u8idle_timeout_min: u16

Auto Trait Implementations

impl Sync for Block

impl Send for Block

impl Unpin for Block

impl RefUnwindSafe for Block

impl UnwindSafe for Block

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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