pub enum CompileError {
IOError(Error),
CompileError(CString),
DLError(CString),
}
Variants§
Trait Implementations§
Source§impl Debug for CompileError
impl Debug for CompileError
Source§impl From<CString> for CompileError
impl From<CString> for CompileError
Auto Trait Implementations§
impl Freeze for CompileError
impl !RefUnwindSafe for CompileError
impl Send for CompileError
impl Sync for CompileError
impl Unpin for CompileError
impl !UnwindSafe for CompileError
Blanket Implementations§
Source§impl<T> AssertSendSyncExt for T
impl<T> AssertSendSyncExt for T
Source§unsafe fn assert_send_sync(self) -> AssertSendSync<Self>
unsafe fn assert_send_sync(self) -> AssertSendSync<Self>
Asserts that this variable/function can be concurrently accessed from
different threads, and sent between threads.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more