pub enum BytesOrWideString<'a> {
    Bytes(&'a [u8]),
    Wide(&'a [u16]),
}
Expand description

A platform independent representation of a string. When working with std enabled it is recommended to the convenience methods for providing conversions to std types.

Variants§

§

Bytes(&'a [u8])

A slice, typically provided on Unix platforms.

§

Wide(&'a [u16])

Wide strings typically from Windows.

Implementations§

Lossy converts to a Cow<str>, will allocate if Bytes is not valid UTF-8 or if BytesOrWideString is Wide.

Provides a Path representation of BytesOrWideString.

Trait Implementations§

Formats the value using the given formatter. Read more
Formats the value using the given formatter. 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.

Converts the given value to a String. Read more
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.