Struct windows::HString[][src]

#[repr(transparent)]
pub struct HString(_);

A WinRT string, sometimes called an HSTRING, is reference-counted and logically immutable. It should only be used for communicating with WinRT APIs.

Implementations

impl HString[src]

pub fn new() -> Self[src]

Create an empty HString.

This function does no allocation.

pub fn is_empty(&self) -> bool[src]

Returns true if the string is empty.

pub fn len(&self) -> usize[src]

Returns the length of self.

pub fn as_wide(&self) -> &[u16]

Notable traits for &'_ mut [u8]

impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
[src]

Get the string as 16-bit wide characters (wchars).

pub fn from_wide(value: &[u16]) -> Self[src]

Create a HString from a slice of 16 bit characters (wchars).

pub fn to_string_lossy(&self) -> String[src]

Get the contents of this HString as a String lossily.

pub fn clear(&mut self)[src]

Clear the contents of the string and free the memory if self holds the last reference to the string data.

Trait Implementations

impl Abi for HString[src]

type Abi = RawPtr

The abi representation of the implementing type. Read more

impl Clone for HString[src]

impl Debug for HString[src]

impl Default for HString[src]

impl Display for HString[src]

impl Drop for HString[src]

impl From<&'_ String> for HString[src]

impl From<&'_ str> for HString[src]

impl From<String> for HString[src]

impl<'a> IntoParam<'a, HString> for &'a str[src]

impl<'a> IntoParam<'a, HString> for String[src]

impl PartialEq<&'_ str> for HString[src]

impl PartialEq<HString> for HString[src]

impl PartialEq<String> for HString[src]

impl PartialEq<str> for HString[src]

impl RuntimeType for HString[src]

impl TryFrom<&'_ HString> for Object[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<&'_ Object> for HString[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<HString> for Object[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Object> for HString[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for HString

impl !Send for HString

impl !Sync for HString

impl Unpin for HString

impl UnwindSafe for HString

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.