pub enum SimpleType {
Number,
Real,
Integer,
Logical,
Boolen,
String_ {
width_spec: Option<WidthSpec>,
},
Binary {
width_spec: Option<WidthSpec>,
},
}Expand description
Primitive types parsed by simple_types
Variants§
Number
8.1.1 Number data type
Real
8.1.2 Real data type
Integer
8.1.3 Integer data type
Logical
8.1.4 Logical data type
Boolen
8.1.5 Boolen data type
String_
8.1.6 String data type
Binary
8.1.7 Binary data type
Trait Implementations§
Source§impl Clone for SimpleType
impl Clone for SimpleType
Source§fn clone(&self) -> SimpleType
fn clone(&self) -> SimpleType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Component for SimpleType
impl Component for SimpleType
impl Copy for SimpleType
Source§impl Debug for SimpleType
impl Debug for SimpleType
impl Eq for SimpleType
Source§impl Hash for SimpleType
impl Hash for SimpleType
Source§impl PartialEq for SimpleType
impl PartialEq for SimpleType
Source§fn eq(&self, other: &SimpleType) -> bool
fn eq(&self, other: &SimpleType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SimpleType
Auto Trait Implementations§
impl Freeze for SimpleType
impl RefUnwindSafe for SimpleType
impl Send for SimpleType
impl Sync for SimpleType
impl Unpin for SimpleType
impl UnsafeUnpin for SimpleType
impl UnwindSafe for SimpleType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more