pub struct FIFOWriteLogic<D: Synth, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> {
Show 13 fields pub write: Signal<In, Bit>, pub data_in: Signal<In, D>, pub full: Signal<Out, Bit>, pub almost_full: Signal<Out, Bit>, pub overflow: Signal<Out, Bit>, pub clock: Signal<In, Clock>, pub ram_write_address: Signal<Out, Bits<N>>, pub ram_write_clock: Signal<Out, Clock>, pub ram_write_data: Signal<Out, D>, pub ram_write_enable: Signal<Out, Bit>, pub read_address: Signal<In, Bits<NP1>>, pub write_address_delayed: Signal<Out, Bits<NP1>>, pub fill_level: Signal<Out, Bits<NP1>>, /* private fields */
}

Fields§

§write: Signal<In, Bit>§data_in: Signal<In, D>§full: Signal<Out, Bit>§almost_full: Signal<Out, Bit>§overflow: Signal<Out, Bit>§clock: Signal<In, Clock>§ram_write_address: Signal<Out, Bits<N>>§ram_write_clock: Signal<Out, Clock>§ram_write_data: Signal<Out, D>§ram_write_enable: Signal<Out, Bit>§read_address: Signal<In, Bits<NP1>>§write_address_delayed: Signal<Out, Bits<NP1>>§fill_level: Signal<Out, Bits<NP1>>

Trait Implementations§

Connects the internal signals of the circuit - used to initialize the circuit
Propogate changes from inputs to outputs within the circuit
Returns true if anything in the circuit has changed (outputs or internal state)
The visitor pattern - allows a circuit to be probed by a Probe struct.
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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.