Struct win_nfd::CoTaskMemWideString
pub struct CoTaskMemWideString(_);
Expand description
A Wide String allocated with CoTaskMemAlloc.
Implementations§
§impl CoTaskMemWideString
impl CoTaskMemWideString
pub fn new(data: &OsStr) -> Option<CoTaskMemWideString>
pub fn new(data: &OsStr) -> Option<CoTaskMemWideString>
pub unsafe fn from_raw(ptr: NonNull<u16>) -> CoTaskMemWideString
pub unsafe fn from_raw(ptr: NonNull<u16>) -> CoTaskMemWideString
Make a new CoTaskMemWideString
from a non-null u16 ptr.
Safety
ptr
must be a valid nul-terminated widestringptr
must be allocated with CoTaskMemAlloc.
pub fn len(&self) -> usize
pub fn len(&self) -> usize
Get the length of the string.
This does not include the NUL terminator. This is O(n).
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Check if this string is empty.
This does not include the NUL terminator. This is O(n).
pub fn iter(&self) -> impl Iterator<Item = u16>
pub fn iter(&self) -> impl Iterator<Item = u16>
Iterate over the code points in this wide string.
This does not include the NUL terminator.
pub fn as_os_string(&self) -> OsString
pub fn as_os_string(&self) -> OsString
Get this as an OsString
.
This does not include the NUL terminator. This is O(n).