pub struct DefaultDependencyResolver;Implementations§
Trait Implementations§
Source§impl Default for DefaultDependencyResolver
impl Default for DefaultDependencyResolver
Source§impl DependencyResolver for DefaultDependencyResolver
impl DependencyResolver for DefaultDependencyResolver
Source§fn resolve_spec<'life0, 'life1, 'async_trait>(
&'life0 self,
spec: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<DependencySpec>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn resolve_spec<'life0, 'life1, 'async_trait>(
&'life0 self,
spec: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<DependencySpec>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
解析依赖规范字符串
Source§fn resolve_dependencies<'life0, 'life1, 'async_trait>(
&'life0 self,
specs: &'life1 [DependencySpec],
) -> Pin<Box<dyn Future<Output = Result<Vec<ResolvedDependency>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn resolve_dependencies<'life0, 'life1, 'async_trait>(
&'life0 self,
specs: &'life1 [DependencySpec],
) -> Pin<Box<dyn Future<Output = Result<Vec<ResolvedDependency>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
解析多个依赖
Source§fn check_conflicts<'life0, 'life1, 'async_trait>(
&'life0 self,
deps: &'life1 [ResolvedDependency],
) -> Pin<Box<dyn Future<Output = Result<Vec<ConflictReport>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn check_conflicts<'life0, 'life1, 'async_trait>(
&'life0 self,
deps: &'life1 [ResolvedDependency],
) -> Pin<Box<dyn Future<Output = Result<Vec<ConflictReport>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
检查依赖冲突
Source§fn build_dependency_graph<'life0, 'life1, 'async_trait>(
&'life0 self,
deps: &'life1 [ResolvedDependency],
) -> Pin<Box<dyn Future<Output = Result<DependencyGraph>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn build_dependency_graph<'life0, 'life1, 'async_trait>(
&'life0 self,
deps: &'life1 [ResolvedDependency],
) -> Pin<Box<dyn Future<Output = Result<DependencyGraph>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
构建依赖图
Auto Trait Implementations§
impl Freeze for DefaultDependencyResolver
impl RefUnwindSafe for DefaultDependencyResolver
impl Send for DefaultDependencyResolver
impl Sync for DefaultDependencyResolver
impl Unpin for DefaultDependencyResolver
impl UnwindSafe for DefaultDependencyResolver
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more