Struct widestring::MissingNulError [] [src]

pub struct MissingNulError(_);

An error returned from WideCString and WideCStr to indicate that a terminating nul value was missing.

The error optionally returns the ownership of the invalid vector whenever a vector was owned.

Methods

impl MissingNulError
[src]

[src]

Consumes this error, returning the underlying vector of u16 values which generated the error in the first place.

Trait Implementations

impl Debug for MissingNulError
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for MissingNulError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for MissingNulError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for MissingNulError
[src]

impl Display for MissingNulError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for MissingNulError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations