pub struct EntryComponents {
pub base: BTreeMap<String, Vec<ReleaseEntry>>,
pub components: BTreeMap<String, BTreeMap<String, Vec<ReleaseEntry>>>,
}
Expand description
Stores the entries for each component for this checksum method.
Fields§
§base: BTreeMap<String, Vec<ReleaseEntry>>
§components: BTreeMap<String, BTreeMap<String, Vec<ReleaseEntry>>>
Implementations§
Trait Implementations§
Source§impl Clone for EntryComponents
impl Clone for EntryComponents
Source§fn clone(&self) -> EntryComponents
fn clone(&self) -> EntryComponents
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 EntryComponents
impl Debug for EntryComponents
Source§impl Default for EntryComponents
impl Default for EntryComponents
Source§fn default() -> EntryComponents
fn default() -> EntryComponents
Returns the “default value” for a type. Read more
Source§impl Hash for EntryComponents
impl Hash for EntryComponents
Source§impl PartialEq for EntryComponents
impl PartialEq for EntryComponents
impl StructuralPartialEq for EntryComponents
Auto Trait Implementations§
impl Freeze for EntryComponents
impl RefUnwindSafe for EntryComponents
impl Send for EntryComponents
impl Sync for EntryComponents
impl Unpin for EntryComponents
impl UnwindSafe for EntryComponents
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