pub struct FIFOReadController<T: Synth> {
pub data: Signal<In, T>,
pub read: Signal<Out, Bit>,
pub empty: Signal<In, Bit>,
pub almost_empty: Signal<In, Bit>,
}
Fields
data: Signal<In, T>
read: Signal<Out, Bit>
empty: Signal<In, Bit>
almost_empty: Signal<In, Bit>
Implementations
sourceimpl<T: Synth> FIFOReadController<T>
impl<T: Synth> FIFOReadController<T>
pub fn join(&mut self, other: &mut FIFOReadResponder<T>)
Trait Implementations
sourceimpl<T: Synth> Block for FIFOReadController<T>
impl<T: Synth> Block for FIFOReadController<T>
sourcefn connect_all(&mut self)
fn connect_all(&mut self)
Connects the internal signals of the circuit - used to initialize the circuit
sourcefn update_all(&mut self)
fn update_all(&mut self)
Propogate changes from inputs to outputs within the circuit
sourcefn has_changed(&self) -> bool
fn has_changed(&self) -> bool
Returns true
if anything in the circuit has changed (outputs or internal state)
sourceimpl<T: Clone + Synth> Clone for FIFOReadController<T>
impl<T: Clone + Synth> Clone for FIFOReadController<T>
sourcefn clone(&self) -> FIFOReadController<T>
fn clone(&self) -> FIFOReadController<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug + Synth> Debug for FIFOReadController<T>
impl<T: Debug + Synth> Debug for FIFOReadController<T>
sourceimpl<T: Default + Synth> Default for FIFOReadController<T>
impl<T: Default + Synth> Default for FIFOReadController<T>
sourcefn default() -> FIFOReadController<T>
fn default() -> FIFOReadController<T>
Returns the “default value” for a type. Read more
sourceimpl<T: Synth> Logic for FIFOReadController<T>
impl<T: Synth> Logic for FIFOReadController<T>
sourceimpl<T: Synth> LogicJoin for FIFOReadController<T>
impl<T: Synth> LogicJoin for FIFOReadController<T>
sourceimpl<T: Synth> LogicLink for FIFOReadController<T>
impl<T: Synth> LogicLink for FIFOReadController<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for FIFOReadController<T>where
T: RefUnwindSafe,
impl<T> Send for FIFOReadController<T>where
T: Send,
impl<T> Sync for FIFOReadController<T>where
T: Sync,
impl<T> Unpin for FIFOReadController<T>where
T: Unpin,
impl<T> UnwindSafe for FIFOReadController<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more