pub struct AsyncFIFO<T: Synth, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> {
    pub bus_write: FIFOWriteResponder<T>,
    pub write_clock: Signal<In, Clock>,
    pub bus_read: FIFOReadResponder<T>,
    pub read_clock: Signal<In, Clock>,
    /* private fields */
}Fields
bus_write: FIFOWriteResponder<T>write_clock: Signal<In, Clock>bus_read: FIFOReadResponder<T>read_clock: Signal<In, Clock>Trait Implementations
sourceimpl<T: Synth, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> Block for AsyncFIFO<T, N, NP1, BLOCK_SIZE>
 
impl<T: Synth, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> Block for AsyncFIFO<T, N, NP1, BLOCK_SIZE>
fn connect_all(&mut self)
fn update_all(&mut self)
fn has_changed(&self) -> bool
fn accept(&self, name: &str, probe: &mut dyn Probe)
Auto Trait Implementations
impl<T, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> RefUnwindSafe for AsyncFIFO<T, N, NP1, BLOCK_SIZE> where
    T: RefUnwindSafe, 
impl<T, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> Send for AsyncFIFO<T, N, NP1, BLOCK_SIZE> where
    T: Send, 
impl<T, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> Sync for AsyncFIFO<T, N, NP1, BLOCK_SIZE> where
    T: Sync, 
impl<T, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> Unpin for AsyncFIFO<T, N, NP1, BLOCK_SIZE> where
    T: Unpin, 
impl<T, const N: usize, const NP1: usize, const BLOCK_SIZE: u32> UnwindSafe for AsyncFIFO<T, N, NP1, BLOCK_SIZE> where
    T: UnwindSafe + RefUnwindSafe, 
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