#[repr(transparent)]
pub struct HSTRING(_);
Expand description
A WinRT string, sometimes called an HSTRING,
is reference-counted and logically immutable. It should only be used for communicating with WinRT APIs.
Create an empty HSTRING
.
This function does not allocate memory.
Returns true
if the string is empty.
Returns the length of the string.
Get the string as 16-bit wide characters (wchars).
Create a HSTRING
from a slice of 16 bit characters (wchars).
Get the contents of this HSTRING
as a String lossily.
Clear the contents of the string and free the memory if self
holds the
last reference to the string data.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String
. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.