pub struct Slices {
pub pwm0: Slice<Pwm0, <Pwm0 as SliceId>::Reset>,
pub pwm1: Slice<Pwm1, <Pwm1 as SliceId>::Reset>,
pub pwm2: Slice<Pwm2, <Pwm2 as SliceId>::Reset>,
pub pwm3: Slice<Pwm3, <Pwm3 as SliceId>::Reset>,
pub pwm4: Slice<Pwm4, <Pwm4 as SliceId>::Reset>,
pub pwm5: Slice<Pwm5, <Pwm5 as SliceId>::Reset>,
pub pwm6: Slice<Pwm6, <Pwm6 as SliceId>::Reset>,
pub pwm7: Slice<Pwm7, <Pwm7 as SliceId>::Reset>,
/* private fields */
}Expand description
Collection of all the individual Slicess
Fields§
§pwm0: Slice<Pwm0, <Pwm0 as SliceId>::Reset>Slice Pwm0
pwm1: Slice<Pwm1, <Pwm1 as SliceId>::Reset>Slice Pwm1
pwm2: Slice<Pwm2, <Pwm2 as SliceId>::Reset>Slice Pwm2
pwm3: Slice<Pwm3, <Pwm3 as SliceId>::Reset>Slice Pwm3
pwm4: Slice<Pwm4, <Pwm4 as SliceId>::Reset>Slice Pwm4
pwm5: Slice<Pwm5, <Pwm5 as SliceId>::Reset>Slice Pwm5
pwm6: Slice<Pwm6, <Pwm6 as SliceId>::Reset>Slice Pwm6
pwm7: Slice<Pwm7, <Pwm7 as SliceId>::Reset>Slice Pwm7
Implementations§
Auto Trait Implementations§
impl Freeze for Slices
impl RefUnwindSafe for Slices
impl Send for Slices
impl !Sync for Slices
impl Unpin for Slices
impl UnwindSafe for Slices
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more