pub struct RawReg<'a> {
pub address: &'a [u8],
pub size: &'a [u8],
}
Expand description
A raw reg
property value set
Fields§
§address: &'a [u8]
Big-endian encoded bytes making up the address portion of the property. Length will always be a multiple of 4 bytes.
size: &'a [u8]
Big-endian encoded bytes making up the size portion of the property. Length will always be a multiple of 4 bytes.
Trait Implementations§
impl<'a> Copy for RawReg<'a>
impl<'a> StructuralPartialEq for RawReg<'a>
Auto Trait Implementations§
impl<'a> Freeze for RawReg<'a>
impl<'a> RefUnwindSafe for RawReg<'a>
impl<'a> Send for RawReg<'a>
impl<'a> Sync for RawReg<'a>
impl<'a> Unpin for RawReg<'a>
impl<'a> UnwindSafe for RawReg<'a>
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