pub enum VmmRegValueType {
REG_NONE,
REG_SZ(String),
REG_EXPAND_SZ(String),
REG_BINARY(Vec<u8>),
REG_DWORD(u32),
REG_DWORD_BIG_ENDIAN(u32),
REG_LINK(String),
REG_MULTI_SZ(Vec<String>),
REG_RESOURCE_LIST(Vec<u8>),
REG_FULL_RESOURCE_DESCRIPTOR(Vec<u8>),
REG_RESOURCE_REQUIREMENTS_LIST(Vec<u8>),
REG_QWORD(u64),
}
Variants§
REG_NONE
REG_SZ(String)
REG_EXPAND_SZ(String)
REG_BINARY(Vec<u8>)
REG_DWORD(u32)
REG_DWORD_BIG_ENDIAN(u32)
REG_LINK(String)
REG_MULTI_SZ(Vec<String>)
REG_RESOURCE_LIST(Vec<u8>)
REG_FULL_RESOURCE_DESCRIPTOR(Vec<u8>)
REG_RESOURCE_REQUIREMENTS_LIST(Vec<u8>)
REG_QWORD(u64)
Trait Implementations§
Source§impl Clone for VmmRegValueType
impl Clone for VmmRegValueType
Source§fn clone(&self) -> VmmRegValueType
fn clone(&self) -> VmmRegValueType
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 Debug for VmmRegValueType
impl Debug for VmmRegValueType
Source§impl<'de> Deserialize<'de> for VmmRegValueType
impl<'de> Deserialize<'de> for VmmRegValueType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for VmmRegValueType
impl Display for VmmRegValueType
Auto Trait Implementations§
impl Freeze for VmmRegValueType
impl RefUnwindSafe for VmmRegValueType
impl Send for VmmRegValueType
impl Sync for VmmRegValueType
impl Unpin for VmmRegValueType
impl UnwindSafe for VmmRegValueType
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