pub enum Detail {
Bool {
bit: u8,
},
Num,
Enum {
last: u8,
enumerators: u16,
},
Preset,
}
The different kind of settings along with descriptor bits that depend on the kind.
A boolean setting only uses one bit, numbered from LSB.
Show fields
A numerical setting uses the whole byte.
An Enum setting uses a range of enumerators.
Show fields
Fields of Enum
Numerical value of last enumerator, allowing for 1-256 enumerators.
First enumerator in the ENUMERATORS table.
A preset is not an individual setting, it is a collection of settings applied at once.
The Descriptor::offset
field refers to the PRESETS
table.
Check if a detail is a Detail::Preset. Useful because the Descriptor
offset field has a different meaning when the detail is a preset.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
[src]
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.