#[repr(C)]pub struct UnicodeStringRaw {
pub length: u16,
pub maximum_length: u16,
pub buffer: *mut u16,
}Expand description
Windows UNICODE_STRING structure
Fields§
§length: u16§maximum_length: u16§buffer: *mut u16Trait Implementations§
Source§impl Clone for UnicodeStringRaw
impl Clone for UnicodeStringRaw
Source§fn clone(&self) -> UnicodeStringRaw
fn clone(&self) -> UnicodeStringRaw
Returns a duplicate 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 UnicodeStringRaw
impl Debug for UnicodeStringRaw
Source§impl Default for UnicodeStringRaw
impl Default for UnicodeStringRaw
impl Copy for UnicodeStringRaw
Auto Trait Implementations§
impl Freeze for UnicodeStringRaw
impl RefUnwindSafe for UnicodeStringRaw
impl !Send for UnicodeStringRaw
impl !Sync for UnicodeStringRaw
impl Unpin for UnicodeStringRaw
impl UnwindSafe for UnicodeStringRaw
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