pub enum Command {
Show 51 variants
Id,
QueryMap(String),
SetBacklightTimeout(Duration),
GetBacklightTimeout,
SetDevicePowerOff(Duration),
GetDevicePowerOff,
GetOperator,
SetOperator(String),
GetCompany,
SetCompany(String),
GetSite,
SetSite(String),
GetContact,
SetContact(String),
GetBeeper,
SetBeeper(bool),
GetSmoothing,
SetSmoothing(bool),
GetClock,
SetClock(u64),
GetSaveName(u16),
SetSaveName(u16, String),
GetMemoryStat,
GetMeasurementBinary,
QuerySavedMeasurement(usize),
QueryMinMaxSessionInfo(usize),
QueryPeakSessionInfo(usize),
QueryRecordedSessionInfo(usize),
QuerySessionRecordReadings(usize, usize),
Clear(ClearMemory),
ResetDevice,
GetCustomDbm,
SetCustomDbm(u16),
GetDigitCount,
SetDigitCount(DigitCount),
GetAutoHoldEventThreshold,
SetAutoHoldEventThreshold(u8),
GetRecordingEventThreshold,
SetRecordingEventThreshold(u8),
GetLanguage,
SetLanguage(Language),
GetDateFormat,
SetDateFormat(DateFormat),
GetTimeFormat,
SetTimeFormat(TimeFormat),
GetNumFormat,
SetNumFormat(NumericFormat),
GetDbmRef,
SetDbmRef(DezibelReference),
GetTempOffset,
SetTempOffset(i16),
}Variants§
Id
QueryMap(String)
SetBacklightTimeout(Duration)
GetBacklightTimeout
SetDevicePowerOff(Duration)
GetDevicePowerOff
GetOperator
SetOperator(String)
GetCompany
SetCompany(String)
GetSite
SetSite(String)
GetContact
SetContact(String)
GetBeeper
SetBeeper(bool)
GetSmoothing
SetSmoothing(bool)
GetClock
SetClock(u64)
GetSaveName(u16)
SetSaveName(u16, String)
GetMemoryStat
GetMeasurementBinary
QuerySavedMeasurement(usize)
QueryMinMaxSessionInfo(usize)
QueryPeakSessionInfo(usize)
QueryRecordedSessionInfo(usize)
QuerySessionRecordReadings(usize, usize)
Clear(ClearMemory)
ResetDevice
GetCustomDbm
SetCustomDbm(u16)
GetDigitCount
SetDigitCount(DigitCount)
GetAutoHoldEventThreshold
SetAutoHoldEventThreshold(u8)
GetRecordingEventThreshold
SetRecordingEventThreshold(u8)
GetLanguage
SetLanguage(Language)
GetDateFormat
SetDateFormat(DateFormat)
GetTimeFormat
SetTimeFormat(TimeFormat)
GetNumFormat
SetNumFormat(NumericFormat)
GetDbmRef
SetDbmRef(DezibelReference)
GetTempOffset
SetTempOffset(i16)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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