Struct alpm_utils::Target
source · pub struct Target {
pub repo: Option<String>,
pub pkg: String,
}Expand description
A packge to find, optionally from a specific repository.
Fields§
§repo: Option<String>The repository the package should come from. None for any repository.
pkg: StringThe name of the package, may also contain a version constraint.
Implementations§
Trait Implementations§
source§impl Ord for Target
impl Ord for Target
source§impl PartialEq for Target
impl PartialEq for Target
source§impl PartialOrd for Target
impl PartialOrd for Target
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for Target
impl StructuralPartialEq for Target
Auto Trait Implementations§
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnwindSafe for Target
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