Enum ffi_utils::string::StringError [] [src]

pub enum StringError {
    Utf8(String),
    Null(String),
    IntoString(String),
}

Error type for strings

Variants

UTF8 error

Null error

IntoString error

Trait Implementations

impl Debug for StringError
[src]

[src]

Formats the value using the given formatter.

impl Eq for StringError
[src]

impl PartialEq for StringError
[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 From<Utf8Error> for StringError
[src]

[src]

Performs the conversion.

impl From<NulError> for StringError
[src]

[src]

Performs the conversion.

impl From<IntoStringError> for StringError
[src]

[src]

Performs the conversion.