#[repr(u8)]pub enum Hscapable {
FAST_MODE_PLUS = 0,
HIGH_SPEED = 1,
}Variants§
FAST_MODE_PLUS = 0
Fast-mode plus. The I 2C interface will support Standard-mode, Fast-mode, and Fast-mode Plus, to the extent that the pin electronics support these modes. Any changes that need to be made to the pin controls, such as changing the drive strength or filtering, must be made by software via the IOCON register associated with each I2C pin,
HIGH_SPEED = 1
High-speed. In addition to Standard-mode, Fast-mode, and Fast-mode Plus, the I 2C interface will support High-speed mode to the extent that the pin electronics support these modes. See Section 25.7.2.2 for more information.
Implementations§
Trait Implementations§
Source§impl Ord for Hscapable
impl Ord for Hscapable
Source§impl PartialOrd for Hscapable
impl PartialOrd for Hscapable
impl Copy for Hscapable
impl Eq for Hscapable
impl StructuralPartialEq for Hscapable
Auto Trait Implementations§
impl Freeze for Hscapable
impl RefUnwindSafe for Hscapable
impl Send for Hscapable
impl Sync for Hscapable
impl Unpin for Hscapable
impl UnwindSafe for Hscapable
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