pub struct ResValue {
pub size: u16,
pub res0: u8,
pub data_type: DataValueType,
pub data: u32,
}Expand description
Representation of a value in a resource, supplying type information.
Fields§
§size: u16Number of bytes in this structure
res0: u8Always set to 0
data_type: DataValueTypeThe type of data
data: u32The actual data
Implementations§
Auto Trait Implementations§
impl Freeze for ResValue
impl RefUnwindSafe for ResValue
impl Send for ResValue
impl Sync for ResValue
impl Unpin for ResValue
impl UnwindSafe for ResValue
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