pub enum TypedArcMsg {
Show 17 variants
Nop,
Test {
arg: u32,
},
ArcGoToSleep,
SetPowerState(PowerState),
FwVersion(FwType),
GetSmbusTelemetryAddr,
SetArcState {
state: ArcState,
},
ResetSafeClks {
arg: u32,
},
ToggleTensixReset {
arg: u32,
},
DeassertRiscVReset,
GetAiclk,
TriggerReset,
GetHarvesting,
TriggerSpiCopyLtoR,
GetSpiDumpAddr,
SpiRead {
addr: u32,
},
SpiWrite,
}Variants§
Nop
Test
ArcGoToSleep
SetPowerState(PowerState)
FwVersion(FwType)
GetSmbusTelemetryAddr
SetArcState
ResetSafeClks
ToggleTensixReset
DeassertRiscVReset
GetAiclk
TriggerReset
GetHarvesting
TriggerSpiCopyLtoR
GetSpiDumpAddr
SpiRead
SpiWrite
Implementations§
Trait Implementations§
Source§impl Debug for TypedArcMsg
impl Debug for TypedArcMsg
Source§impl From<TypedArcMsg> for ArcMsg
impl From<TypedArcMsg> for ArcMsg
Source§fn from(val: TypedArcMsg) -> Self
fn from(val: TypedArcMsg) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TypedArcMsg
impl RefUnwindSafe for TypedArcMsg
impl Send for TypedArcMsg
impl Sync for TypedArcMsg
impl Unpin for TypedArcMsg
impl UnsafeUnpin for TypedArcMsg
impl UnwindSafe for TypedArcMsg
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