#[repr(u8)]pub enum FstEnumType {
Show 16 variants
Integer = 0,
Bit = 1,
Logic = 2,
Int = 3,
ShortInt = 4,
LongInt = 5,
Byte = 6,
UnsignedInteger = 7,
UnsignedBit = 8,
UnsignedLogic = 9,
UnsignedInt = 10,
UnsignedShortInt = 11,
UnsignedLongInt = 12,
UnsignedByte = 13,
Reg = 14,
Time = 15,
}Variants§
Integer = 0
Bit = 1
Logic = 2
Int = 3
ShortInt = 4
LongInt = 5
Byte = 6
UnsignedInteger = 7
UnsignedBit = 8
UnsignedLogic = 9
UnsignedInt = 10
UnsignedShortInt = 11
UnsignedLongInt = 12
UnsignedByte = 13
Reg = 14
Time = 15
Trait Implementations§
Source§impl Clone for FstEnumType
impl Clone for FstEnumType
Source§fn clone(&self) -> FstEnumType
fn clone(&self) -> FstEnumType
Returns a duplicate 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 FstEnumType
impl Debug for FstEnumType
Source§impl PartialEq for FstEnumType
impl PartialEq for FstEnumType
Source§impl TryFrom<u8> for FstEnumType
impl TryFrom<u8> for FstEnumType
Source§type Error = TryFromPrimitiveError<FstEnumType>
type Error = TryFromPrimitiveError<FstEnumType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for FstEnumType
impl TryFromPrimitive for FstEnumType
const NAME: &'static str = "FstEnumType"
type Primitive = u8
type Error = TryFromPrimitiveError<FstEnumType>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for FstEnumType
impl StructuralPartialEq for FstEnumType
Auto Trait Implementations§
impl Freeze for FstEnumType
impl RefUnwindSafe for FstEnumType
impl Send for FstEnumType
impl Sync for FstEnumType
impl Unpin for FstEnumType
impl UnsafeUnpin for FstEnumType
impl UnwindSafe for FstEnumType
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