pub struct Entry<'a> {
pub descriptors: SmallVec<[Descriptor<'a>; 4]>,
pub package: Package<'a>,
}Expand description
A single lockfile entry is a mapping of one or more descriptors to a single package
Fields§
§descriptors: SmallVec<[Descriptor<'a>; 4]>The descriptors of the entry (using SmallVec for stack allocation in common case)
package: Package<'a>The package of the entry
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Entry<'a>
impl<'a> RefUnwindSafe for Entry<'a>
impl<'a> Send for Entry<'a>
impl<'a> Sync for Entry<'a>
impl<'a> Unpin for Entry<'a>
impl<'a> UnsafeUnpin for Entry<'a>
impl<'a> UnwindSafe for Entry<'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