W3cubDocs

/Rust

Struct std::ffi::IntoStringError

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]

[src]

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

[src]

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

Trait Implementations

impl Clone for IntoStringError [src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for IntoStringError [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 IntoStringError [src]

impl Debug for IntoStringError [src]

[src]

Formats the value using the given formatter. Read more

impl Error for IntoStringError [src]

[src]

A short description of the error. Read more

[src]

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

impl Display for IntoStringError [src]

[src]

Formats the value using the given formatter. Read more

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ffi/struct.IntoStringError.html