Struct rust_hdl::widgets::test_helpers::LazyFIFOReader
source · [−]pub struct LazyFIFOReader<T: Synth, const N: usize> {
pub clock: Signal<In, Clock>,
pub bus: FIFOReadController<T>,
pub done: Signal<Out, Bit>,
pub start: Signal<In, Bit>,
pub error: Signal<Out, Bit>,
/* private fields */
}
Fields
clock: Signal<In, Clock>
bus: FIFOReadController<T>
done: Signal<Out, Bit>
start: Signal<In, Bit>
error: Signal<Out, Bit>
Implementations
sourceimpl<T: Synth, const N: usize> LazyFIFOReader<T, N>
impl<T: Synth, const N: usize> LazyFIFOReader<T, N>
pub fn new(data: &[T], sleeps: &[Bits<32>]) -> LazyFIFOReader<T, N>
Trait Implementations
sourceimpl<T: Synth, const N: usize> Block for LazyFIFOReader<T, N>
impl<T: Synth, const N: usize> Block for LazyFIFOReader<T, N>
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> RefUnwindSafe for LazyFIFOReader<T, N> where
T: RefUnwindSafe,
impl<T, const N: usize> Send for LazyFIFOReader<T, N> where
T: Send,
impl<T, const N: usize> Sync for LazyFIFOReader<T, N> where
T: Sync,
impl<T, const N: usize> Unpin for LazyFIFOReader<T, N> where
T: Unpin,
impl<T, const N: usize> UnwindSafe for LazyFIFOReader<T, N> 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