pub struct GetDependencyStatusQuery<C: ConfigurationRepository> { /* private fields */ }Expand description
Query for showing dependency status
Implementations§
Source§impl<C: ConfigurationRepository> GetDependencyStatusQuery<C>
impl<C: ConfigurationRepository> GetDependencyStatusQuery<C>
pub fn new(config_repo: C) -> Self
Sourcepub fn get_all_statuses(
&self,
config_path: &Path,
) -> Result<Vec<DependencyStatusDto>>
pub fn get_all_statuses( &self, config_path: &Path, ) -> Result<Vec<DependencyStatusDto>>
Get the status of all dependencies
Auto Trait Implementations§
impl<C> Freeze for GetDependencyStatusQuery<C>where
C: Freeze,
impl<C> RefUnwindSafe for GetDependencyStatusQuery<C>where
C: RefUnwindSafe,
impl<C> Send for GetDependencyStatusQuery<C>where
C: Send,
impl<C> Sync for GetDependencyStatusQuery<C>where
C: Sync,
impl<C> Unpin for GetDependencyStatusQuery<C>where
C: Unpin,
impl<C> UnsafeUnpin for GetDependencyStatusQuery<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for GetDependencyStatusQuery<C>where
C: UnwindSafe,
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