Struct samply_symbols::ExternalFileRef
source · Expand description
Information to find an external file with debug information.
Fields§
§file_name: StringThe path to the file, as specified in the linked binary’s object map.
arch: Option<String>A mach-O arch string (“x86_64”, “arm64” etc.) which is needed in the rare case that the external file is a fat binary.
Trait Implementations§
source§impl Clone for ExternalFileRef
impl Clone for ExternalFileRef
source§fn clone(&self) -> ExternalFileRef
fn clone(&self) -> ExternalFileRef
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 ExternalFileRef
impl Debug for ExternalFileRef
source§impl Hash for ExternalFileRef
impl Hash for ExternalFileRef
source§impl Ord for ExternalFileRef
impl Ord for ExternalFileRef
source§fn cmp(&self, other: &ExternalFileRef) -> Ordering
fn cmp(&self, other: &ExternalFileRef) -> 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<ExternalFileRef> for ExternalFileRef
impl PartialEq<ExternalFileRef> for ExternalFileRef
source§fn eq(&self, other: &ExternalFileRef) -> bool
fn eq(&self, other: &ExternalFileRef) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ExternalFileRef> for ExternalFileRef
impl PartialOrd<ExternalFileRef> for ExternalFileRef
source§fn partial_cmp(&self, other: &ExternalFileRef) -> Option<Ordering>
fn partial_cmp(&self, other: &ExternalFileRef) -> 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