#[repr(u16)]pub enum PropertyDataType {
Sz = 1,
ExpandSz = 2,
Binary = 3,
DwordLittleEndian = 4,
DwordBigEndian = 5,
Link = 6,
RegMultiSz = 7,
}
Expand description
Table 15. wPropertyDataType values for the Microsoft OS 2.0 registry property descriptor.
Variants§
Sz = 1
A registry property containing a string.
ExpandSz = 2
A registry property containing a string that expands environment variables.
Binary = 3
A registry property containing binary data.
DwordLittleEndian = 4
A registry property containing a little-endian 32-bit integer.
DwordBigEndian = 5
A registry property containing a big-endian 32-bit integer.
Link = 6
A registry property containing a string that contains a symbolic link.
RegMultiSz = 7
A registry property containing multiple strings.
Trait Implementations§
Source§impl Clone for PropertyDataType
impl Clone for PropertyDataType
Source§fn clone(&self) -> PropertyDataType
fn clone(&self) -> PropertyDataType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for PropertyDataType
impl PartialEq for PropertyDataType
impl Copy for PropertyDataType
impl Eq for PropertyDataType
impl StructuralPartialEq for PropertyDataType
Auto Trait Implementations§
impl Freeze for PropertyDataType
impl RefUnwindSafe for PropertyDataType
impl Send for PropertyDataType
impl Sync for PropertyDataType
impl Unpin for PropertyDataType
impl UnwindSafe for PropertyDataType
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
)