pub enum ModuleUriResolution {
Resolved(String),
NotFound,
TimedOut,
}Expand description
Outcome of a module name to URI resolution attempt.
Variants§
Resolved(String)
A matching module URI was found.
NotFound
No matching module was found.
TimedOut
Resolution stopped because the timeout budget was exhausted.
Trait Implementations§
Source§impl Clone for ModuleUriResolution
impl Clone for ModuleUriResolution
Source§fn clone(&self) -> ModuleUriResolution
fn clone(&self) -> ModuleUriResolution
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 moreSource§impl Debug for ModuleUriResolution
impl Debug for ModuleUriResolution
Source§impl PartialEq for ModuleUriResolution
impl PartialEq for ModuleUriResolution
impl Eq for ModuleUriResolution
impl StructuralPartialEq for ModuleUriResolution
Auto Trait Implementations§
impl Freeze for ModuleUriResolution
impl RefUnwindSafe for ModuleUriResolution
impl Send for ModuleUriResolution
impl Sync for ModuleUriResolution
impl Unpin for ModuleUriResolution
impl UnsafeUnpin for ModuleUriResolution
impl UnwindSafe for ModuleUriResolution
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