pub struct Updates<'a> {
pub aur_updates: Vec<AurUpdate<'a>>,
pub pkgbuild_updates: Vec<PkgbuildUpdate<'a>>,
pub aur_ignored: Vec<AurUpdate<'a>>,
pub pkgbuild_ignored: Vec<PkgbuildUpdate<'a>>,
pub missing: Vec<&'a Package>,
}
Expand description
Collection of AUR updates and missing packages.
Fields§
§aur_updates: Vec<AurUpdate<'a>>
The aur updates.
pkgbuild_updates: Vec<PkgbuildUpdate<'a>>
The pkgbuild updates.
aur_ignored: Vec<AurUpdate<'a>>
Packages that matched ignore pkg/group.
pkgbuild_ignored: Vec<PkgbuildUpdate<'a>>
Packages that matched ignore pkg/group.
missing: Vec<&'a Package>
Packages that were not found in the AUR or elsewhere.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Updates<'a>
impl<'a> !RefUnwindSafe for Updates<'a>
impl<'a> !Send for Updates<'a>
impl<'a> !Sync for Updates<'a>
impl<'a> Unpin for Updates<'a>
impl<'a> !UnwindSafe for Updates<'a>
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