pub enum Type {
U32,
U64,
String,
ExpandString,
MultiString,
Bytes,
Other(u32),
}
Expand description
The possible types that a registry value could have.
Variants§
U32
A 32-bit unsigned integer value.
U64
A 64-bit unsigned integer value.
String
A string value.
ExpandString
A string value that may contain unexpanded environment variables.
MultiString
An array of string values.
Bytes
An array u8 bytes.
Other(u32)
An unknown type.
Trait Implementations§
impl Copy for Type
impl Eq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)