pub struct CoTaskMemWideString(_);
Expand description

A Wide String allocated with CoTaskMemAlloc.

Implementations§

Allocate a new string.

Errors
  • Returns None if the memory could not be allocated.

Make a new CoTaskMemWideString from a non-null u16 ptr.

Safety
  • ptr must be a valid nul-terminated widestring
  • ptr must be allocated with CoTaskMemAlloc.

Get the length of the string.

This does not include the NUL terminator. This is O(n).

Check if this string is empty.

This does not include the NUL terminator. This is O(n).

Iterate over the code points in this wide string.

This does not include the NUL terminator.

Get this as an OsString.

This does not include the NUL terminator. This is O(n).

Get a slice from this.

This does not include the NUL terminator. This is O(n).

Trait Implementations§

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.