Struct km::string::UNICODE_STRING [] [src]

pub struct UNICODE_STRING {
    pub Length: u16,
    pub MaximumLength: u16,
    pub Buffer: *const u16,
}

A counted Unicode string.

Fields

Length

The length in bytes of the string stored in Buffer.

MaximumLength

The length in bytes of Buffer.

Buffer

Pointer to a buffer used to contain a string of wide characters.

Trait Implementations

impl NativeString for UNICODE_STRING

fn size(&self) -> u16

fn max_size(&self) -> u16

fn is_empty(&self) -> bool

impl Default for UNICODE_STRING

Initializes a counted Unicode string.

fn default() -> Self