Struct std::ffi::IntoStringError1.7.0 [] [src]

pub struct IntoStringError { /* fields omitted */ }

An error indicating invalid UTF-8 when converting a CString into a String.

CString is just a wrapper over a buffer of bytes with a nul terminator; into_string performs UTF-8 validation on those bytes and may return this error.

This struct is created by the into_string method on CString. See its documentation for more.

Methods

impl IntoStringError
[src]

Consumes this error, returning original CString which generated the error.

Access the underlying UTF-8 error that was the cause of this error.

Trait Implementations

impl Clone for IntoStringError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IntoStringError
[src]

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

This method tests for !=.

impl Eq for IntoStringError
[src]

impl Debug for IntoStringError
[src]

Formats the value using the given formatter. Read more

impl Error for IntoStringError
[src]

A short description of the error. Read more

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

impl Display for IntoStringError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for IntoStringError

impl Sync for IntoStringError