pub enum Provider {
Apt(Apt),
Cargo(Cargo),
Custom(Custom),
Cwd(Cwd),
Dnf(Dnf),
Flatpak(Flatpak),
Pacman(Pacman),
Path(Path),
}Expand description
Wrapper type for everything implementing IsProvider.
Variants§
Trait Implementations§
source§impl IsProvider for Provider
impl IsProvider for Provider
source§fn search_internal<'life0, 'life1, 'async_trait>(
&'life0 self,
__enum_dispatch_arg_0: &'life1 str,
__enum_dispatch_arg_1: Arc<Environment>
) -> Pin<Box<dyn Future<Output = Result<Vec<Candidate>, ProviderError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn search_internal<'life0, 'life1, 'async_trait>( &'life0 self, __enum_dispatch_arg_0: &'life1 str, __enum_dispatch_arg_1: Arc<Environment> ) -> Pin<Box<dyn Future<Output = Result<Vec<Candidate>, ProviderError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
Search for a command with this provider in env.
source§impl PartialEq<Provider> for Provider
impl PartialEq<Provider> for Provider
impl StructuralPartialEq for Provider
Auto Trait Implementations§
impl RefUnwindSafe for Provider
impl Send for Provider
impl Sync for Provider
impl Unpin for Provider
impl UnwindSafe for Provider
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