Struct std::ffi::FromBytesWithNulError1.10.0 [] [src]

pub struct FromBytesWithNulError { /* fields omitted */ }

An error indicating that a nul byte was not in the expected position.

The slice used to create a CStr must have one and only one nul byte at the end of the slice.

This error is created by the from_bytes_with_nul method on CStr. See its documentation for more.

Examples

use std::ffi::{CStr, FromBytesWithNulError};

let _: FromBytesWithNulError = CStr::from_bytes_with_nul(b"f\0oo").unwrap_err();Run

Trait Implementations

impl Clone for FromBytesWithNulError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Debug for FromBytesWithNulError
[src]

Formats the value using the given formatter. Read more

impl Error for FromBytesWithNulError
1.17.0
[src]

A short description of the error. Read more

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

impl Display for FromBytesWithNulError
1.17.0
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FromBytesWithNulError

impl Sync for FromBytesWithNulError