pub trait AlpmExt {
// Required method
fn find_orphans(&self) -> impl Iterator<Item = &Package>;
}Expand description
Extension trait for Alpm providing orphan detection.
Required Methods§
Sourcefn find_orphans(&self) -> impl Iterator<Item = &Package>
fn find_orphans(&self) -> impl Iterator<Item = &Package>
Find all orphan packages in the local database.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.