pub struct PackageListEntry {
pub package: String,
pub package_type: String,
pub section: String,
pub priority: Priority,
pub extra: HashMap<String, String>,
}
Expand description
A package list entry
Fields§
§package: String
Package name
package_type: String
Package type
section: String
Section
priority: Priority
Priority
extra: HashMap<String, String>
Extra fields
Implementations§
Trait Implementations§
Source§impl Clone for PackageListEntry
impl Clone for PackageListEntry
Source§fn clone(&self) -> PackageListEntry
fn clone(&self) -> PackageListEntry
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 PackageListEntry
impl Debug for PackageListEntry
Source§impl Display for PackageListEntry
impl Display for PackageListEntry
Source§impl FromStr for PackageListEntry
impl FromStr for PackageListEntry
Source§impl PartialEq for PackageListEntry
impl PartialEq for PackageListEntry
impl Eq for PackageListEntry
impl StructuralPartialEq for PackageListEntry
Auto Trait Implementations§
impl Freeze for PackageListEntry
impl RefUnwindSafe for PackageListEntry
impl Send for PackageListEntry
impl Sync for PackageListEntry
impl Unpin for PackageListEntry
impl UnwindSafe for PackageListEntry
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