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