pub struct PkgbuildRepo<'a> {
pub name: &'a str,
pub pkgs: Vec<&'a Srcinfo>,
}
Expand description
A pkgbuild repo.
Fields§
§name: &'a str
Name of the repo.
pkgs: Vec<&'a Srcinfo>
Packages in the repo.
Trait Implementations§
Source§impl<'a> Clone for PkgbuildRepo<'a>
impl<'a> Clone for PkgbuildRepo<'a>
Source§fn clone(&self) -> PkgbuildRepo<'a>
fn clone(&self) -> PkgbuildRepo<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for PkgbuildRepo<'a>
impl<'a> RefUnwindSafe for PkgbuildRepo<'a>
impl<'a> Send for PkgbuildRepo<'a>
impl<'a> Sync for PkgbuildRepo<'a>
impl<'a> Unpin for PkgbuildRepo<'a>
impl<'a> UnwindSafe for PkgbuildRepo<'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