pub struct ExternalFileAddressRef {
pub file_ref: ExternalFileRef,
pub address_in_file: ExternalFileAddressInFileRef,
}Expand description
Information to find an external file and an address within that file, to be
passed to SymbolMap::lookup_external or
ExternalFileSymbolMap::lookup.
Fields§
§file_ref: ExternalFileRefInformation needed to find the external file.
address_in_file: ExternalFileAddressInFileRefInformation needed to find the address within that external file.
Trait Implementations§
Source§impl Clone for ExternalFileAddressRef
impl Clone for ExternalFileAddressRef
Source§fn clone(&self) -> ExternalFileAddressRef
fn clone(&self) -> ExternalFileAddressRef
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 ExternalFileAddressRef
impl Debug for ExternalFileAddressRef
Source§impl Hash for ExternalFileAddressRef
impl Hash for ExternalFileAddressRef
Source§impl Ord for ExternalFileAddressRef
impl Ord for ExternalFileAddressRef
Source§fn cmp(&self, other: &ExternalFileAddressRef) -> Ordering
fn cmp(&self, other: &ExternalFileAddressRef) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ExternalFileAddressRef
impl PartialEq for ExternalFileAddressRef
Source§impl PartialOrd for ExternalFileAddressRef
impl PartialOrd for ExternalFileAddressRef
impl Eq for ExternalFileAddressRef
impl StructuralPartialEq for ExternalFileAddressRef
Auto Trait Implementations§
impl Freeze for ExternalFileAddressRef
impl RefUnwindSafe for ExternalFileAddressRef
impl Send for ExternalFileAddressRef
impl Sync for ExternalFileAddressRef
impl Unpin for ExternalFileAddressRef
impl UnwindSafe for ExternalFileAddressRef
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