[][src]Enum c2rust_transpile::c_ast::CTypeKind

pub enum CTypeKind {
    Void,
    Bool,
    Char,
    SChar,
    Short,
    Int,
    Long,
    LongLong,
    UChar,
    UShort,
    UInt,
    ULong,
    ULongLong,
    Float,
    Double,
    LongDouble,
    Int128,
    UInt128,
    Complex(CTypeId),
    Pointer(CQualTypeId),
    ConstantArray(CTypeIdusize),
    IncompleteArray(CTypeId),
    VariableArray(CTypeIdOption<CExprId>),
    TypeOf(CTypeId),
    TypeOfExpr(CExprId),
    Function(CQualTypeIdVec<CQualTypeId>, boolboolbool),
    Typedef(CTypedefId),
    Decayed(CTypeId),
    Elaborated(CTypeId),
    Paren(CTypeId),
    Struct(CRecordId),
    Union(CRecordId),
    Enum(CEnumId),
    BuiltinFn,
    Attributed(CQualTypeIdOption<Attribute>),
    BlockPointer(CQualTypeId),
    Vector(CQualTypeIdusize),
    Half,
}

Represents a type in C (6.2.5 Types)

Reflects the types in http://clang.llvm.org/doxygen/classclang_1_1Type.html

Variants

VoidBoolCharSCharShortIntLongLongLongUCharUShortUIntULongULongLongFloatDoubleLongDoubleInt128UInt128Complex(CTypeId)Pointer(CQualTypeId)ConstantArray(CTypeIdusize)IncompleteArray(CTypeId)VariableArray(CTypeIdOption<CExprId>)TypeOf(CTypeId)TypeOfExpr(CExprId)Function(CQualTypeIdVec<CQualTypeId>, boolboolbool)Typedef(CTypedefId)Decayed(CTypeId)Elaborated(CTypeId)Paren(CTypeId)Struct(CRecordId)Union(CRecordId)Enum(CEnumId)BuiltinFnAttributed(CQualTypeIdOption<Attribute>)BlockPointer(CQualTypeId)Vector(CQualTypeIdusize)Half

Methods

impl CTypeKind[src]

pub fn is_pointer(&self) -> bool[src]

pub fn is_bool(&self) -> bool[src]

pub fn is_enum(&self) -> bool[src]

pub fn is_integral_type(&self) -> bool[src]

pub fn is_unsigned_integral_type(&self) -> bool[src]

pub fn is_signed_integral_type(&self) -> bool[src]

pub fn is_floating_type(&self) -> bool[src]

pub fn as_underlying_decl(&self) -> Option<CDeclId>[src]

pub fn as_decl_or_typedef(&self) -> Option<CDeclId>[src]

pub fn is_vector(&self) -> bool[src]

Trait Implementations

impl PartialEq<CTypeKind> for CTypeKind[src]

impl Clone for CTypeKind[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CTypeKind[src]

Auto Trait Implementations

impl Send for CTypeKind

impl Sync for CTypeKind

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<E> SpecializationError for E[src]

impl<T> Erased for T[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Make for T[src]

impl<T> MaybeResult for T[src]

impl<'a, T> Captures for T where
    T: ?Sized
[src]

impl<T> Erased for T