W3cubDocs

/Rust

Struct std::ffi::FromBytesWithNulError

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();

Trait Implementations

impl Clone for FromBytesWithNulError [src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl Debug for FromBytesWithNulError [src]

[src]

Formats the value using the given formatter. Read more

impl Error for FromBytesWithNulError
1.17.0
[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

impl Display for FromBytesWithNulError
1.17.0
[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.FromBytesWithNulError.html