pub struct FIFOWriteController<T>where
T: Synth,{
pub data: Signal<Out, T>,
pub write: Signal<Out, bool>,
pub full: Signal<In, bool>,
pub almost_full: Signal<In, bool>,
}
Fields§
§data: Signal<Out, T>
§write: Signal<Out, bool>
§full: Signal<In, bool>
§almost_full: Signal<In, bool>
Implementations§
Source§impl<T> FIFOWriteController<T>where
T: Synth,
impl<T> FIFOWriteController<T>where
T: Synth,
pub fn join(&mut self, other: &mut FIFOWriteResponder<T>)
Trait Implementations§
Source§impl<T> Block for FIFOWriteController<T>where
T: Synth,
impl<T> Block for FIFOWriteController<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 FIFOWriteController<T>
impl<T> Clone for FIFOWriteController<T>
Source§fn clone(&self) -> FIFOWriteController<T>
fn clone(&self) -> FIFOWriteController<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 FIFOWriteController<T>
impl<T> Debug for FIFOWriteController<T>
Source§impl<T> Default for FIFOWriteController<T>
impl<T> Default for FIFOWriteController<T>
Source§fn default() -> FIFOWriteController<T>
fn default() -> FIFOWriteController<T>
Returns the “default value” for a type. Read more
Source§impl<T> Logic for FIFOWriteController<T>where
T: Synth,
impl<T> Logic for FIFOWriteController<T>where
T: Synth,
Source§impl<T> LogicJoin for FIFOWriteController<T>where
T: Synth,
impl<T> LogicJoin for FIFOWriteController<T>where
T: Synth,
Auto Trait Implementations§
impl<T> Freeze for FIFOWriteController<T>where
T: Freeze,
impl<T> RefUnwindSafe for FIFOWriteController<T>where
T: RefUnwindSafe,
impl<T> Send for FIFOWriteController<T>where
T: Send,
impl<T> Sync for FIFOWriteController<T>where
T: Sync,
impl<T> Unpin for FIFOWriteController<T>where
T: Unpin,
impl<T> UnwindSafe for FIFOWriteController<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