[][src]Struct lfsr_instances::galois::Galois9

pub struct Galois9 {
    pub state: u32,
}

9-bit Galois LFSR with taps at 9, 5. Sequence length is 511. 0 is a lock-up state.

Fields

state: u32

Methods

impl Galois9[src]

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

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

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

Trait Implementations

impl Default for Galois9[src]

Default state is 1

impl Display for Galois9[src]

impl LFSR for Galois9[src]

impl LFSRStatic for Galois9[src]

Auto Trait Implementations

impl Send for Galois9

impl Sync for Galois9

impl Unpin for Galois9

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.