[][src]Struct quantum_random::web_async::EntropyBank

pub struct EntropyBank { /* fields omitted */ }

The default structure for holding random bytes

Methods

impl EntropyBank[src]

pub async fn new_async<'a>(
    size: u32
) -> Result<Arc<RwLock<Self>>, QuantumError<'a>>
[src]

Returns an EntropyBank asynchronously

pub fn default_entropy_bank_loaded_to_memory_and_is_valid() -> bool[src]

Checks if the entropy bank is usable

pub fn save<'a>(&mut self, name: Option<String>) -> Result<(), QuantumError<'a>>[src]

Saves the EntropyBank to the hard drive

pub async fn load<'a>(
    name_opt: Option<String>
) -> Result<Arc<RwLock<Self>>, QuantumError<'a>>
[src]

TODO: Stop deserializing it constantly, this is actually a security risk in the case of a local virus

pub fn replicate(&self) -> Arc<RwLock<Self>>[src]

Performs a deep clone of the EntropyBank

pub fn did_expire(&self) -> bool[src]

Determines if the EntropyBank expired

pub fn shuffle_and_get<'a>(
    &mut self,
    len: usize,
    save: bool
) -> Result<Vec<u8>, QuantumError<'a>>
[src]

Shuffles the EntropyBank and returns a reference to the newly allocated array for read access

Trait Implementations

impl Clone for EntropyBank[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for EntropyBank[src]

impl Serialize for EntropyBank[src]

impl<'de> Deserialize<'de> for EntropyBank[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

impl<T> Erased for T

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

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