Enum cpp_demangle::ast::Type [−][src]
The <type> production.
<type> ::= <builtin-type>
::= <function-type>
::= <class-enum-type>
::= <array-type>
::= <vector-type>
::= <pointer-to-member-type>
::= <template-param>
::= <template-template-param> <template-args>
::= <decltype>
::= <CV-qualifiers> <type>
::= P <type> # pointer-to
::= R <type> # reference-to
::= O <type> # rvalue reference-to (C++0x)
::= C <type> # complex pair (C 2000)
::= G <type> # imaginary (C 2000)
::= U <source-name> [<template-args>] <type> # vendor extended type qualifier
::= Dp <type> # pack expansion (C++0x)
::= <substitution>
Variants
Function(FunctionType)A function type.
ClassEnum(ClassEnumType)A class, union, or enum type.
Array(ArrayType)An array type.
Vector(VectorType)A vector type.
PointerToMember(PointerToMemberType)A pointer-to-member type.
TemplateParam(TemplateParam)A named template parameter type.
TemplateTemplate(TemplateTemplateParamHandle, TemplateArgs)A template template type.
Decltype(Decltype)A decltype.
Qualified(CvQualifiers, TypeHandle)A const-, restrict-, and/or volatile-qualified type.
PointerTo(TypeHandle)A pointer to a type.
LvalueRef(TypeHandle)An lvalue reference to a type.
RvalueRef(TypeHandle)An rvalue reference to a type.
Complex(TypeHandle)A complex pair of the given type.
Imaginary(TypeHandle)An imaginary of the given type.
VendorExtension(SourceName, Option<TemplateArgs>, TypeHandle)A vendor extended type qualifier.
PackExpansion(TypeHandle)A pack expansion.
Trait Implementations
impl Clone for Type[src]
impl Debug for Type[src]
impl Eq for Type[src]
impl PartialEq<Type> for Type[src]
impl StructuralEq for Type[src]
impl StructuralPartialEq for Type[src]
Auto Trait Implementations
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,