pub enum ResolutionResult {
Ok {
closure: Vec<PluginId>,
},
Cycle {
chain: Vec<PluginId>,
},
NotFound {
missing: PluginId,
required_by: PluginId,
},
CrossMarketplace {
dependency: PluginId,
required_by: PluginId,
},
}Expand description
Result of dependency resolution.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for ResolutionResult
impl RefUnwindSafe for ResolutionResult
impl Send for ResolutionResult
impl Sync for ResolutionResult
impl Unpin for ResolutionResult
impl UnsafeUnpin for ResolutionResult
impl UnwindSafe for ResolutionResult
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