Struct win_nfd::c_wide_string::CWideString
source · pub struct CWideString(_);
Expand description
A wide analog of https://doc.rust-lang.org/std/ffi/struct.CString.html
Implementations§
source§impl CWideString
impl CWideString
pub fn new<D>(data: D) -> Result<Self, NulError>where
D: IntoWide,
sourcepub fn from_vec_with_nul(data: Vec<u16>) -> Result<Self, FromVecWithNulError>
pub fn from_vec_with_nul(data: Vec<u16>) -> Result<Self, FromVecWithNulError>
Make a new CWideString
from a vec that is nul terminated.
Errors
Errors if data contains interior nuls or is not nul terminated
sourcepub unsafe fn from_vec_with_nul_unchecked(data: Vec<u16>) -> Self
pub unsafe fn from_vec_with_nul_unchecked(data: Vec<u16>) -> Self
Make a new CWideString
from a vec that is nul terminated without checks.
Safety
- data must contain no interior nuls
- data must be nul terminated
sourcepub fn as_c_wide_str(&self) -> &CWideStr
pub fn as_c_wide_str(&self) -> &CWideStr
Get this as a CWideStr
.
Methods from Deref<Target = CWideStr>§
Trait Implementations§
source§impl Borrow<CWideStr> for CWideString
impl Borrow<CWideStr> for CWideString
source§impl Clone for CWideString
impl Clone for CWideString
source§fn clone(&self) -> CWideString
fn clone(&self) -> CWideString
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CWideString
impl Debug for CWideString
source§impl Deref for CWideString
impl Deref for CWideString
source§impl Hash for CWideString
impl Hash for CWideString
source§impl Ord for CWideString
impl Ord for CWideString
source§fn cmp(&self, other: &CWideString) -> Ordering
fn cmp(&self, other: &CWideString) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<CWideString> for CWideString
impl PartialEq<CWideString> for CWideString
source§fn eq(&self, other: &CWideString) -> bool
fn eq(&self, other: &CWideString) -> bool
source§impl PartialOrd<CWideString> for CWideString
impl PartialOrd<CWideString> for CWideString
source§fn partial_cmp(&self, other: &CWideString) -> Option<Ordering>
fn partial_cmp(&self, other: &CWideString) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more