pub struct MetaPackage {Show 14 fields
pub name: String,
pub description: String,
pub url: String,
pub packager: String,
pub architecture: String,
pub groups: Vec<String>,
pub licenses: Vec<String>,
pub depends: Vec<String>,
pub optdepends: Vec<String>,
pub makedepends: Vec<String>,
pub conflicts: Vec<String>,
pub replaces: Vec<String>,
pub provides: Vec<Provide>,
pub backups: Vec<String>,
/* private fields */
}Expand description
Fields§
§name: String§description: String§url: String§packager: String§architecture: String§groups: Vec<String>§licenses: Vec<String>§depends: Vec<String>§optdepends: Vec<String>§makedepends: Vec<String>§conflicts: Vec<String>§replaces: Vec<String>§provides: Vec<Provide>§backups: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for MetaPackage
impl Clone for MetaPackage
Source§fn clone(&self) -> MetaPackage
fn clone(&self) -> MetaPackage
Returns a duplicate 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 MetaPackage
impl Debug for MetaPackage
Source§impl Hash for MetaPackage
impl Hash for MetaPackage
Source§impl PartialEq for MetaPackage
impl PartialEq for MetaPackage
impl Eq for MetaPackage
impl StructuralPartialEq for MetaPackage
Auto Trait Implementations§
impl Freeze for MetaPackage
impl RefUnwindSafe for MetaPackage
impl Send for MetaPackage
impl Sync for MetaPackage
impl Unpin for MetaPackage
impl UnwindSafe for MetaPackage
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more