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>
fn connect_all(&mut self)
fn update_all(&mut self)
fn has_changed(&self) -> bool
fn accept(&self, name: &str, probe: &mut dyn Probe)
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 T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    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
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more