pub enum ExternalFileRef {
MachoExternalObject {
file_path: String,
},
ElfExternalDwo {
comp_dir: String,
path: String,
},
}Expand description
Information to find an external file with debug information.
Variants§
Trait Implementations§
Source§impl Clone for ExternalFileRef
impl Clone for ExternalFileRef
Source§fn clone(&self) -> ExternalFileRef
fn clone(&self) -> ExternalFileRef
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 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 for ExternalFileRef
impl PartialEq for ExternalFileRef
Source§impl PartialOrd for ExternalFileRef
impl PartialOrd for ExternalFileRef
impl Eq for ExternalFileRef
impl StructuralPartialEq for ExternalFileRef
Auto Trait Implementations§
impl Freeze for ExternalFileRef
impl RefUnwindSafe for ExternalFileRef
impl Send for ExternalFileRef
impl Sync for ExternalFileRef
impl Unpin for ExternalFileRef
impl UnwindSafe for ExternalFileRef
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