pub struct CrossNarrowFIFO<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> {
pub data_in: Signal<In, Bits<DW>>,
pub write: Signal<In, Bit>,
pub full: Signal<Out, Bit>,
pub write_clock: Signal<In, Clock>,
pub data_out: Signal<Out, Bits<DN>>,
pub read: Signal<In, Bit>,
pub empty: Signal<Out, Bit>,
pub read_clock: Signal<In, Clock>,
pub in_fifo: AsynchronousFIFO<Bits<DW>, WN, WNP1, 1>,
pub out_fifo: SynchronousFIFO<Bits<DN>, NN, NNP1, 1>,
pub reducer: FIFOReducerN<DW, DN>,
}
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> Block for CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> Default for CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
Returns the “default value” for a type. Read more
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> Logic for CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> Send for CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> Sync for CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> Unpin for CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
impl<const DW: usize, const WN: usize, const WNP1: usize, const DN: usize, const NN: usize, const NNP1: usize> UnwindSafe for CrossNarrowFIFO<DW, WN, WNP1, DN, NN, NNP1>
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. 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.
The type returned in the event of a conversion error.