pub struct LibBootDependency {
pub lib_id: LibId,
pub symbol: Symbol,
}Expand description
A loaded dependency edge recorded in a boot receipt.
Fields§
§lib_id: LibIdStable id of the loaded dependency in the recorded boot session.
symbol: SymbolManifest symbol of the loaded dependency.
Trait Implementations§
Source§impl Clone for LibBootDependency
impl Clone for LibBootDependency
Source§fn clone(&self) -> LibBootDependency
fn clone(&self) -> LibBootDependency
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LibBootDependency
impl Debug for LibBootDependency
impl Eq for LibBootDependency
Source§impl PartialEq for LibBootDependency
impl PartialEq for LibBootDependency
Source§fn eq(&self, other: &LibBootDependency) -> bool
fn eq(&self, other: &LibBootDependency) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LibBootDependency
Auto Trait Implementations§
impl Freeze for LibBootDependency
impl RefUnwindSafe for LibBootDependency
impl Send for LibBootDependency
impl Sync for LibBootDependency
impl Unpin for LibBootDependency
impl UnsafeUnpin for LibBootDependency
impl UnwindSafe for LibBootDependency
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