Enum cpp_demangle::ast::CallOffset
[−]
[src]
pub enum CallOffset {
NonVirtual(NvOffset),
Virtual(VOffset),
}The <call-offset> production.
<call-offset> ::= h <nv-offset> _
::= v <v-offset> _
Variants
NonVirtual(NvOffset)A non-virtual offset.
Virtual(VOffset)A virtual offset.
Trait Implementations
impl Clone for CallOffset[src]
fn clone(&self) -> CallOffset
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for CallOffset[src]
impl PartialEq for CallOffset[src]
fn eq(&self, __arg_0: &CallOffset) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CallOffset) -> bool
This method tests for !=.