[][src]Enum lang_c::ast::TypeSpecifier

pub enum TypeSpecifier {
    Void,
    Char,
    Short,
    Int,
    Long,
    Float,
    Double,
    Signed,
    Unsigned,
    Bool,
    Complex,
    Atomic(Node<TypeName>),
    Struct(Node<StructType>),
    Enum(Node<EnumType>),
    TypedefName(Node<Identifier>),
    TypeOf(Node<TypeOf>),
    TS18661Float(TS18661FloatType),
}

Type specifier

(C11 6.7.2)

Variants

Void

void

Char

char

Short

short

Int

int

Long

long

Float

float

Double

double

Signed

signed

__signed, __signed__ (GNU extension)

Unsigned

unsigned

Bool

_Bool

Complex

_Complex

__complex, __complex__ (GNU extension)

Atomic(Node<TypeName>)

_Atomic(typename)

Struct(Node<StructType>)

struct identifier { … }

union identifier { … }

Enum(Node<EnumType>)

enum identifier { … }

TypedefName(Node<Identifier>)

Name of a previously defined type

TypeOf(Node<TypeOf>)

Specifies type of another type or expression

GNU extension

TS18661Float(TS18661FloatType)

Floating point types with guaranteed width and representation

_Float16, _Float32, _Float64, _Float128

_Float16x, _Float32x, _Float64x, _Float128x

_Decimal16, _Decimal32, _Decimal64, _Decimal128

_Decimal16x, _Decimal32x, _Decimal64x, _Decimal128x

ISO/IEC TS 18661-3:2015

Trait Implementations

impl Clone for TypeSpecifier[src]

impl PartialEq<TypeSpecifier> for TypeSpecifier[src]

impl Debug for TypeSpecifier[src]

impl StructuralPartialEq for TypeSpecifier[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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