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