pub struct SDRAMFIFO<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> {
pub clock: Signal<In, Clock>,
pub sdram: SDRAMDriver<D>,
pub ram_clock: Signal<In, Clock>,
pub bus_write: FIFOWriteResponder<Bits<P>>,
pub bus_read: FIFOReadResponder<Bits<P>>,
/* private fields */
}Fields
clock: Signal<In, Clock>sdram: SDRAMDriver<D>ram_clock: Signal<In, Clock>bus_write: FIFOWriteResponder<Bits<P>>bus_read: FIFOReadResponder<Bits<P>>Implementations
Trait Implementations
sourceimpl<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> Block for SDRAMFIFO<R, C, P, D, A, AP1>
impl<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> Block for SDRAMFIFO<R, C, P, D, A, AP1>
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<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> RefUnwindSafe for SDRAMFIFO<R, C, P, D, A, AP1>
impl<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> Send for SDRAMFIFO<R, C, P, D, A, AP1>
impl<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> Sync for SDRAMFIFO<R, C, P, D, A, AP1>
impl<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> Unpin for SDRAMFIFO<R, C, P, D, A, AP1>
impl<const R: usize, const C: usize, const P: usize, const D: usize, const A: usize, const AP1: usize> UnwindSafe for SDRAMFIFO<R, C, P, D, A, AP1>
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