pub struct SDRAMCommandDecoder {
pub ras_not: Signal<In, Bit>,
pub cas_not: Signal<In, Bit>,
pub we_not: Signal<In, Bit>,
pub cs_not: Signal<In, Bit>,
pub cmd: Signal<Out, SDRAMCommand>,
}
Fields
ras_not: Signal<In, Bit>
cas_not: Signal<In, Bit>
we_not: Signal<In, Bit>
cs_not: Signal<In, Bit>
cmd: Signal<Out, SDRAMCommand>
Trait Implementations
sourceimpl Block for SDRAMCommandDecoder
impl Block for SDRAMCommandDecoder
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 Default for SDRAMCommandDecoder
impl Default for SDRAMCommandDecoder
sourcefn default() -> SDRAMCommandDecoder
fn default() -> SDRAMCommandDecoder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for SDRAMCommandDecoder
impl Send for SDRAMCommandDecoder
impl Sync for SDRAMCommandDecoder
impl Unpin for SDRAMCommandDecoder
impl UnwindSafe for SDRAMCommandDecoder
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