[][src]Struct sgx_trts::c_str::NulError

pub struct NulError(_, _);

An error returned from CString::new to indicate that a nul byte was found in the vector provided.

Methods

impl NulError[src]

pub fn nul_position(&self) -> usize[src]

Returns the position of the nul byte in the slice that was provided to CString::new.

pub fn into_vec(self) -> Vec<u8>[src]

Consumes this error, returning the underlying vector of bytes which generated the error in the first place.

Trait Implementations

impl PartialEq<NulError> for NulError[src]

impl Eq for NulError[src]

impl Display for NulError[src]

impl Debug for NulError[src]

impl Clone for NulError[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for NulError

impl Sync for NulError

Blanket Implementations

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> From<T> for 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]