[][src]Struct lfsr_instances::galois::Galois3

pub struct Galois3 {
    pub state: u32,
}

3-bit Galois LFSR with taps at 3, 2. Sequence length is 7. 0 is a lock-up state.

Fields

state: u32

Methods

impl Galois3[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 Galois3[src]

Default state is 1

impl Display for Galois3[src]

impl LFSR for Galois3[src]

impl LFSRStatic for Galois3[src]

Auto Trait Implementations

impl Send for Galois3

impl Sync for Galois3

impl Unpin for Galois3

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.