[][src]Struct cursed::exception::Exception

#[repr(transparent)]
pub struct Exception(_);

A newtype over a raw, owned CString for providing errors over the FFI.

Methods

impl Exception[src]

pub unsafe fn from_raw(ptr: NonNull<c_char>) -> Exception[src]

pub fn into_c_string(self) -> CString[src]

pub fn as_ptr(&self) -> *const c_char[src]

pub fn into_raw(self) -> *mut Exception[src]

Trait Implementations

impl Drop for Exception[src]

impl<'_> TryFrom<&'_ str> for Exception[src]

type Error = NulError

The type returned in the event of a conversion error.

impl From<Exception> for CString[src]

Auto Trait Implementations

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]