#[repr(u8)]pub enum FstVhdlDataType {
Show 17 variants
None = 0,
Boolean = 1,
Bit = 2,
Vector = 3,
ULogic = 4,
ULogicVector = 5,
Logic = 6,
LogicVector = 7,
Unsigned = 8,
Signed = 9,
Integer = 10,
Real = 11,
Natural = 12,
Positive = 13,
Time = 14,
Character = 15,
String = 16,
}Variants§
None = 0
Boolean = 1
Bit = 2
Vector = 3
ULogic = 4
ULogicVector = 5
Logic = 6
LogicVector = 7
Unsigned = 8
Signed = 9
Integer = 10
Real = 11
Natural = 12
Positive = 13
Time = 14
Character = 15
String = 16
Trait Implementations§
Source§impl Clone for FstVhdlDataType
impl Clone for FstVhdlDataType
Source§fn clone(&self) -> FstVhdlDataType
fn clone(&self) -> FstVhdlDataType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FstVhdlDataType
impl Debug for FstVhdlDataType
Source§impl PartialEq for FstVhdlDataType
impl PartialEq for FstVhdlDataType
Source§impl TryFrom<u8> for FstVhdlDataType
impl TryFrom<u8> for FstVhdlDataType
Source§type Error = TryFromPrimitiveError<FstVhdlDataType>
type Error = TryFromPrimitiveError<FstVhdlDataType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for FstVhdlDataType
impl TryFromPrimitive for FstVhdlDataType
const NAME: &'static str = "FstVhdlDataType"
type Primitive = u8
type Error = TryFromPrimitiveError<FstVhdlDataType>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for FstVhdlDataType
impl StructuralPartialEq for FstVhdlDataType
Auto Trait Implementations§
impl Freeze for FstVhdlDataType
impl RefUnwindSafe for FstVhdlDataType
impl Send for FstVhdlDataType
impl Sync for FstVhdlDataType
impl Unpin for FstVhdlDataType
impl UnwindSafe for FstVhdlDataType
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