pub enum ScriptResolveError {
ResolveError(ResolveError),
DepLoaderError(DepLoaderError),
}
Variants§
ResolveError(ResolveError)
DepLoaderError(DepLoaderError)
Trait Implementations§
Source§impl Debug for ScriptResolveError
impl Debug for ScriptResolveError
Source§impl From<DepLoaderError> for ScriptResolveError
impl From<DepLoaderError> for ScriptResolveError
Source§fn from(err: DepLoaderError) -> Self
fn from(err: DepLoaderError) -> Self
Converts to this type from the input type.
Source§impl From<ResolveError> for ScriptResolveError
impl From<ResolveError> for ScriptResolveError
Source§fn from(err: ResolveError) -> Self
fn from(err: ResolveError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ScriptResolveError
impl !RefUnwindSafe for ScriptResolveError
impl !Send for ScriptResolveError
impl !Sync for ScriptResolveError
impl Unpin for ScriptResolveError
impl !UnwindSafe for ScriptResolveError
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