[][src]Struct lfsr::galois::Galois16

pub struct Galois16 {
    pub state: u32,
}

16-bit Galois LFSR with taps at 16, 14, 13, 11. Sequence length is 65535. 0 is a lock-up state.

Fields

state: u32

Methods

impl Galois16[src]

pub const fn new(initial_state: u32) -> Galois16[src]

pub const fn up(prev_state: u32) -> u32[src]

pub const fn down(prev_state: u32) -> u32[src]

Trait Implementations

impl Default for Galois16[src]

Default state is 1

impl Display for Galois16[src]

impl LFSR for Galois16[src]

impl LFSRStatic for Galois16[src]

Auto Trait Implementations

impl Send for Galois16

impl Sync for Galois16

impl Unpin for Galois16

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.