Enum cpp_demangle::ast::Encoding
source · [−]pub enum Encoding {
Function(Name, BareFunctionType),
Data(Name),
Special(SpecialName),
}
Expand description
The <encoding>
production.
<encoding> ::= <function name> <bare-function-type>
::= <data name>
::= <special-name>
Variants
Function(Name, BareFunctionType)
An encoded function.
Data(Name)
An encoded static variable.
Special(SpecialName)
A special encoding.
Trait Implementations
impl Eq for Encoding
impl StructuralEq for Encoding
impl StructuralPartialEq for Encoding
Auto Trait Implementations
impl RefUnwindSafe for Encoding
impl Send for Encoding
impl Sync for Encoding
impl Unpin for Encoding
impl UnwindSafe for Encoding
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more