[][src]Struct maxwell::Demon

pub struct Demon {
    pub last_sample: u32,
    pub last_mixing_sample: u32,
    pub run: u32,
    pub key: u32,
    pub mix: u32,
    pub ops_remaining: u32,
    pub samples_remaining: u32,
}

Fields

last_sample: u32

The last sample observed by the demon

last_mixing_sample: u32

The last sample used by the demon for mixing

run: u32

The number of consecutive samples with the same value

key: u32

The current key-in-progress

mix: u32

The current mixing value

ops_remaining: u32

The number of operations remaining to obtain a good key

samples_remaining: u32

The number of samples remaining before a timeout will be raise

Implementations

impl Demon[src]

pub fn take_sample(&mut self, sample: u32) -> Result<[u8; 4]>[src]

Trait Implementations

impl Debug for Demon[src]

impl Default for Demon[src]

Auto Trait Implementations

impl Send for Demon

impl Sync for Demon

impl Unpin for Demon

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, 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.