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