pub struct Pads<S, I, SDA, SCL>where
S: Sercom,
I: IoSet,
SDA: IsI2cPad<PadNum = Pad0, Sercom = S> + InIoSet<I>,
SCL: IsI2cPad<PadNum = Pad1, Sercom = S> + InIoSet<I>,{ /* private fields */ }
Expand description
Container for a set of SERCOM Pad
s
See the module-level documentation for more
details on specifying a Pads
type and creating instances.
Implementations
Trait Implementations
Auto Trait Implementations
impl<S, I, SDA, SCL> RefUnwindSafe for Pads<S, I, SDA, SCL>where
I: RefUnwindSafe,
S: RefUnwindSafe,
SCL: RefUnwindSafe,
SDA: RefUnwindSafe,
impl<S, I, SDA, SCL> Send for Pads<S, I, SDA, SCL>where
I: Send,
S: Send,
SCL: Send,
SDA: Send,
impl<S, I, SDA, SCL> Sync for Pads<S, I, SDA, SCL>where
I: Sync,
S: Sync,
SCL: Sync,
SDA: Sync,
impl<S, I, SDA, SCL> Unpin for Pads<S, I, SDA, SCL>where
I: Unpin,
S: Unpin,
SCL: Unpin,
SDA: Unpin,
impl<S, I, SDA, SCL> UnwindSafe for Pads<S, I, SDA, SCL>where
I: UnwindSafe,
S: UnwindSafe,
SCL: UnwindSafe,
SDA: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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