1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
use crate::generic::*;
#[repr(transparent)]
#[derive(Copy, Clone)]
pub struct IcConSpeed(pub u8);
impl IcConSpeed {
    #[doc = "Standard Speed mode of operation"]
    pub const STANDARD: Self = Self(0x01);
    #[doc = "Fast or Fast Plus mode of operation"]
    pub const FAST: Self = Self(0x02);
    #[doc = "High Speed mode of operation"]
    pub const HIGH: Self = Self(0x03);
}