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