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§
source§impl Block for SDRAMCommandEncoder
 
impl Block for SDRAMCommandEncoder
source§fn connect_all(&mut self)
 
fn connect_all(&mut self)
Connects the internal signals of the circuit - used to initialize the circuit
source§fn update_all(&mut self)
 
fn update_all(&mut self)
Propogate changes from inputs to outputs within the circuit
source§fn has_changed(&self) -> bool
 
fn has_changed(&self) -> bool
Returns 
true if anything in the circuit has changed (outputs or internal state)source§impl Default for SDRAMCommandEncoder
 
impl Default for SDRAMCommandEncoder
source§fn default() -> SDRAMCommandEncoder
 
fn default() -> SDRAMCommandEncoder
Returns the “default value” for a type. Read more