pub enum MetaCallLoaderError {
FileNotFound(PathBuf),
FromFileFailure,
FromMemoryFailure,
NotAFileOrPermissionDenied(PathBuf),
UnexpectedCStringConversionErr(MetaCallStringConversionError),
}Expand description
This error may happen when loading a code. Check your logs for more information if you
get FromFileFailure or FromMemoryFailure error variant.
Variants§
FileNotFound(PathBuf)
File not found.
FromFileFailure
Failed to load from file.
FromMemoryFailure
Failed to load from memory.
NotAFileOrPermissionDenied(PathBuf)
Not a file or permission denied.
UnexpectedCStringConversionErr(MetaCallStringConversionError)
Null character detected.
Trait Implementations§
Source§impl Clone for MetaCallLoaderError
impl Clone for MetaCallLoaderError
Source§fn clone(&self) -> MetaCallLoaderError
fn clone(&self) -> MetaCallLoaderError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MetaCallLoaderError
impl RefUnwindSafe for MetaCallLoaderError
impl Send for MetaCallLoaderError
impl Sync for MetaCallLoaderError
impl Unpin for MetaCallLoaderError
impl UnwindSafe for MetaCallLoaderError
Blanket Implementations§
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