Enum symbolic_common::NameMangling
source · pub enum NameMangling {
Mangled,
Unmangled,
Unknown,
}
Expand description
Variants§
Mangled
The Name
is definitely mangled.
Unmangled
The Name
is not mangled.
Unknown
The mangling of the Name
is not known.
Trait Implementations§
source§impl Clone for NameMangling
impl Clone for NameMangling
source§fn clone(&self) -> NameMangling
fn clone(&self) -> NameMangling
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 NameMangling
impl Debug for NameMangling
source§impl Default for NameMangling
impl Default for NameMangling
source§impl<'de> Deserialize<'de> for NameMangling
impl<'de> Deserialize<'de> for NameMangling
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 Hash for NameMangling
impl Hash for NameMangling
source§impl Ord for NameMangling
impl Ord for NameMangling
source§fn cmp(&self, other: &NameMangling) -> Ordering
fn cmp(&self, other: &NameMangling) -> 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<NameMangling> for NameMangling
impl PartialEq<NameMangling> for NameMangling
source§fn eq(&self, other: &NameMangling) -> bool
fn eq(&self, other: &NameMangling) -> bool
source§impl PartialOrd<NameMangling> for NameMangling
impl PartialOrd<NameMangling> for NameMangling
source§fn partial_cmp(&self, other: &NameMangling) -> Option<Ordering>
fn partial_cmp(&self, other: &NameMangling) -> 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