[][src]Struct winrt::BStr

pub struct BStr(_);

A wrapper around BSTR, a string type used by classic COM. This is usually not needed when working with WinRT, but can be helpful when interacting with other APIs.

Methods

impl BStr[src]

pub fn get(&self) -> BSTR[src]

pub unsafe fn wrap(bstr: BSTR) -> BStr[src]

pub fn empty() -> BStr[src]

pub fn get_address(&mut self) -> &mut BSTR[src]

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

Trait Implementations

impl ToString for BStr[src]

impl Drop for BStr[src]

impl<'a> From<&'a str> for BStr[src]

impl Display for BStr[src]

Auto Trait Implementations

impl !Send for BStr

impl !Sync for BStr

Blanket Implementations

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

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

impl<T> From<T> for T[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.

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

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

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