pub enum CapSymbols {
Elf(Vec<CapSymbol>),
MachO(Vec<CapSymbol>),
Pe(Vec<CapSymbol>),
Unknown(Vec<CapSymbol>),
}Expand description
Wraps the symbols with the detected file format of their parent binary
Variants§
Trait Implementations§
Source§impl Clone for CapSymbols
impl Clone for CapSymbols
Source§fn clone(&self) -> CapSymbols
fn clone(&self) -> CapSymbols
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 CapSymbols
impl Debug for CapSymbols
Source§impl<'de> Deserialize<'de> for CapSymbols
impl<'de> Deserialize<'de> for CapSymbols
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CapSymbols
impl PartialEq for CapSymbols
Source§fn eq(&self, other: &CapSymbols) -> bool
fn eq(&self, other: &CapSymbols) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CapSymbols
impl Serialize for CapSymbols
impl StructuralPartialEq for CapSymbols
Auto Trait Implementations§
impl Freeze for CapSymbols
impl RefUnwindSafe for CapSymbols
impl Send for CapSymbols
impl Sync for CapSymbols
impl Unpin for CapSymbols
impl UnsafeUnpin for CapSymbols
impl UnwindSafe for CapSymbols
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