pub struct WString(/* private fields */);
Expand description
WString is the utf16 string, similar to std::wstring in cpp. It is used for passing utf16 string buffers between Rust and COM.
Implementations§
Trait Implementations§
Source§impl From<WString> for WStringWrap
impl From<WString> for WStringWrap
Source§impl From<WStringWrap> for WString
impl From<WStringWrap> for WString
Source§fn from(val: WStringWrap) -> Self
fn from(val: WStringWrap) -> Self
Converts to this type from the input type.
impl Eq for WString
impl StructuralPartialEq for WString
Auto Trait Implementations§
impl Freeze for WString
impl RefUnwindSafe for WString
impl Send for WString
impl Sync for WString
impl Unpin for WString
impl UnwindSafe for WString
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more