Struct samply_symbols::ExternalFileAddressRef
source · 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 SymbolManager::lookup_external.
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 copy 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<ExternalFileAddressRef> for ExternalFileAddressRef
impl PartialEq<ExternalFileAddressRef> for ExternalFileAddressRef
source§fn eq(&self, other: &ExternalFileAddressRef) -> bool
fn eq(&self, other: &ExternalFileAddressRef) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ExternalFileAddressRef> for ExternalFileAddressRef
impl PartialOrd<ExternalFileAddressRef> for ExternalFileAddressRef
source§fn partial_cmp(&self, other: &ExternalFileAddressRef) -> Option<Ordering>
fn partial_cmp(&self, other: &ExternalFileAddressRef) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more