pub struct PkgbuildPackages {
pub repo: String,
pub srcinfo: Box<Srcinfo>,
pub pkgs: Vec<Pkgbuild>,
pub build: bool,
}
Expand description
Packages from a pkgbuild repo.
Fields§
§repo: String
the repo the package came from.
srcinfo: Box<Srcinfo>
The srcinfo of the pkgbase.
pkgs: Vec<Pkgbuild>
The pkgs from the srcinfo to install.
build: bool
Should the package be built.
Implementations§
Trait Implementations§
Source§impl Clone for PkgbuildPackages
impl Clone for PkgbuildPackages
Source§fn clone(&self) -> PkgbuildPackages
fn clone(&self) -> PkgbuildPackages
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PkgbuildPackages
impl Debug for PkgbuildPackages
Source§impl Display for PkgbuildPackages
impl Display for PkgbuildPackages
Source§impl Hash for PkgbuildPackages
impl Hash for PkgbuildPackages
Source§impl Ord for PkgbuildPackages
impl Ord for PkgbuildPackages
Source§fn cmp(&self, other: &PkgbuildPackages) -> Ordering
fn cmp(&self, other: &PkgbuildPackages) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PkgbuildPackages
impl PartialEq for PkgbuildPackages
Source§impl PartialOrd for PkgbuildPackages
impl PartialOrd for PkgbuildPackages
impl Eq for PkgbuildPackages
impl StructuralPartialEq for PkgbuildPackages
Auto Trait Implementations§
impl Freeze for PkgbuildPackages
impl RefUnwindSafe for PkgbuildPackages
impl Send for PkgbuildPackages
impl Sync for PkgbuildPackages
impl Unpin for PkgbuildPackages
impl UnwindSafe for PkgbuildPackages
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.