#[repr(u8)]pub enum OUTOVER_A {
NORMAL = 0,
INVERT = 1,
LOW = 2,
HIGH = 3,
}Expand description
Value on reset: 0
Variants§
NORMAL = 0
0: drive output from peripheral signal selected by funcsel
INVERT = 1
1: drive output from inverse of peripheral signal selected by funcsel
LOW = 2
2: drive output low
HIGH = 3
3: drive output high
Trait Implementations§
impl Copy for OUTOVER_A
impl Eq for OUTOVER_A
impl IsEnum for OUTOVER_A
impl StructuralPartialEq for OUTOVER_A
Auto Trait Implementations§
impl Freeze for OUTOVER_A
impl RefUnwindSafe for OUTOVER_A
impl Send for OUTOVER_A
impl Sync for OUTOVER_A
impl Unpin for OUTOVER_A
impl UnwindSafe for OUTOVER_A
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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