#[repr(u8)]pub enum Ores {
NO_CHANGE = 0,
SET = 1,
CLEAR = 2,
TOGGLE_OUTPUT = 3,
}Variants§
NO_CHANGE = 0
No change.
SET = 1
Set output (or clear based on the SETCLR0 field in the OUTPUTDIRCTRL register).
CLEAR = 2
Clear output (or set based on the SETCLR0 field).
TOGGLE_OUTPUT = 3
Toggle output.
Implementations§
Trait Implementations§
Source§impl Ord for Ores
impl Ord for Ores
Source§impl PartialOrd for Ores
impl PartialOrd for Ores
impl Copy for Ores
impl Eq for Ores
impl StructuralPartialEq for Ores
Auto Trait Implementations§
impl Freeze for Ores
impl RefUnwindSafe for Ores
impl Send for Ores
impl Sync for Ores
impl Unpin for Ores
impl UnwindSafe for Ores
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