Struct windows::CoString[][src]

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

A null-terminated wide-string that has been allocated with CoTaskMemAlloc or CoTaskMemRealloc and is freed with CoTaskMemFree.

Implementations

impl CoString[src]

pub fn new() -> Self[src]

Create a new CoString

pub fn as_wide(&self) -> impl Iterator<Item = u16>[src]

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

This returns an iterator instead of slice, because the string does not keep track of its length.

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

Returns whether the string is empty or not

Trait Implementations

impl Debug for CoString[src]

impl Display for CoString[src]

impl Drop for CoString[src]

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

impl From<String> for CoString[src]

Auto Trait Implementations

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> 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.