pub struct SPIWiresMaster {
pub mosi: Signal<Out, Bit>,
pub miso: Signal<In, Bit>,
pub msel: Signal<Out, Bit>,
pub mclk: Signal<Out, Bit>,
}
Fields
mosi: Signal<Out, Bit>
miso: Signal<In, Bit>
msel: Signal<Out, Bit>
mclk: Signal<Out, Bit>
Implementations
sourceimpl SPIWiresMaster
impl SPIWiresMaster
pub fn join(&mut self, other: &mut SPIWiresSlave)
Trait Implementations
sourceimpl Block for SPIWiresMaster
impl Block for SPIWiresMaster
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 SPIWiresMaster
impl Default for SPIWiresMaster
sourcefn default() -> SPIWiresMaster
fn default() -> SPIWiresMaster
Returns the “default value” for a type. Read more
sourceimpl Logic for SPIWiresMaster
impl Logic for SPIWiresMaster
sourceimpl LogicJoin for SPIWiresMaster
impl LogicJoin for SPIWiresMaster
sourceimpl LogicLink for SPIWiresMaster
impl LogicLink for SPIWiresMaster
Auto Trait Implementations
impl RefUnwindSafe for SPIWiresMaster
impl Send for SPIWiresMaster
impl Sync for SPIWiresMaster
impl Unpin for SPIWiresMaster
impl UnwindSafe for SPIWiresMaster
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