#[repr(u8)]pub enum PioSlew {
STANDARD = 0,
FAST = 1,
}Variants§
STANDARD = 0
Standard-mode, output slew rate is slower. More outputs can be switched simultaneously.
FAST = 1
Fast-mode, output slew rate is faster. Refer to the appropriate specific device data sheet for details.
Implementations§
Trait Implementations§
Source§impl Ord for PioSlew
impl Ord for PioSlew
Source§impl PartialOrd for PioSlew
impl PartialOrd for PioSlew
impl Copy for PioSlew
impl Eq for PioSlew
impl StructuralPartialEq for PioSlew
Auto Trait Implementations§
impl Freeze for PioSlew
impl RefUnwindSafe for PioSlew
impl Send for PioSlew
impl Sync for PioSlew
impl Unpin for PioSlew
impl UnwindSafe for PioSlew
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