Struct rust_hdl::widgets::cross_fifo::CrossWidenFIFO[][src]

pub struct CrossWidenFIFO<const DN: usize, const NN: usize, const NNP1: usize, const DW: usize, const WN: usize, const WNP1: usize> {
    pub data_in: Signal<In, Bits<DN>>,
    pub write: Signal<In, Bit>,
    pub full: Signal<Out, Bit>,
    pub write_clock: Signal<In, Clock>,
    pub data_out: Signal<Out, Bits<DW>>,
    pub read: Signal<In, Bit>,
    pub empty: Signal<Out, Bit>,
    pub read_clock: Signal<In, Clock>,
    pub in_fifo: AsynchronousFIFO<Bits<DN>, NN, NNP1, 1>,
    pub out_fifo: SynchronousFIFO<Bits<DW>, WN, WNP1, 1>,
    pub xpand: FIFOExpanderN<DN, DW>,
}

Fields

data_in: Signal<In, Bits<DN>>write: Signal<In, Bit>full: Signal<Out, Bit>write_clock: Signal<In, Clock>data_out: Signal<Out, Bits<DW>>read: Signal<In, Bit>empty: Signal<Out, Bit>read_clock: Signal<In, Clock>in_fifo: AsynchronousFIFO<Bits<DN>, NN, NNP1, 1>out_fifo: SynchronousFIFO<Bits<DW>, WN, WNP1, 1>xpand: FIFOExpanderN<DN, DW>

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.