[][src]Struct drone_core::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 drone_core::ffi::{CStr, FromBytesWithNulError};

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

Trait Implementations

impl PartialEq<FromBytesWithNulError> for FromBytesWithNulError[src]

impl Eq for FromBytesWithNulError[src]

impl Debug for FromBytesWithNulError[src]

impl Display for FromBytesWithNulError[src]

impl Clone for FromBytesWithNulError[src]

Auto Trait Implementations

impl Unpin for FromBytesWithNulError

impl Send for FromBytesWithNulError

impl Sync for FromBytesWithNulError

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]