Struct std::ffi::FromBytesWithNulError 1.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]
fn clone(&self) -> FromBytesWithNulError
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for FromBytesWithNulError
[src]
fn eq(&self, __arg_0: &FromBytesWithNulError) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &FromBytesWithNulError) -> bool
[src]
This method tests for !=
.
impl Eq for FromBytesWithNulError
[src]
impl Debug for FromBytesWithNulError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Error for FromBytesWithNulError
1.17.0[src]
fn description(&self) -> &str
[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
1.0.0[src]
The lower-level cause of this error, if any. Read more