pub enum I2cRequest {
SetModeHost,
SetModeDevice {
addr: u8,
},
GetMaxSpeed,
SetMaxSpeed {
value: u32,
},
SetPins {
serial_clock: Option<String>,
serial_data: Option<String>,
gsc_ready: Option<String>,
},
RunTransaction {
address: Option<u8>,
transaction: Vec<I2cTransferRequest>,
},
GetDeviceStatus {
timeout_millis: u32,
},
PrepareReadData {
data: Vec<u8>,
sticky: bool,
},
}
Variants§
SetModeHost
SetModeDevice
GetMaxSpeed
SetMaxSpeed
SetPins
RunTransaction
GetDeviceStatus
PrepareReadData
Trait Implementations§
Source§impl<'de> Deserialize<'de> for I2cRequest
impl<'de> Deserialize<'de> for I2cRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for I2cRequest
impl RefUnwindSafe for I2cRequest
impl Send for I2cRequest
impl Sync for I2cRequest
impl Unpin for I2cRequest
impl UnwindSafe for I2cRequest
Blanket Implementations§
§impl<T> Annotate for T
impl<T> Annotate for T
default fn format( &self, _variant: Option<&str>, _field: &MemberId<'_>, ) -> Option<Format>
default fn comment( &self, _variant: Option<&str>, _field: &MemberId<'_>, ) -> Option<String>
default fn as_annotate(&self) -> Option<&dyn Annotate>
default fn thunk_serialize( &self, serializer: &mut AnnotatedSerializer<'_>, ) -> Result<Document, Error>
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