Enum cardinal_codegen::entities::Type [−][src]
pub enum Type {
Plain,
Array(isize),
Pointer,
}Expand description
Different types of types that can be declared.
Variants
A plain type, such as int or double.
An array type, such as char[] or int[]. -1 should be used as the size argument if
a size should be declared implicitly.
Tuple Fields of Array
0: isizeA pointer type, such as char* or int*.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Type
impl UnwindSafe for Type
Blanket Implementations
Mutably borrows from an owned value. Read more