#[repr(u8)]pub enum FstVarDirection {
Implicit = 0,
Input = 1,
Output = 2,
InOut = 3,
Buffer = 4,
Linkage = 5,
}Variants§
Trait Implementations§
Source§impl Clone for FstVarDirection
impl Clone for FstVarDirection
Source§fn clone(&self) -> FstVarDirection
fn clone(&self) -> FstVarDirection
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 FstVarDirection
impl Debug for FstVarDirection
Source§impl PartialEq for FstVarDirection
impl PartialEq for FstVarDirection
Source§impl TryFrom<u8> for FstVarDirection
impl TryFrom<u8> for FstVarDirection
Source§type Error = TryFromPrimitiveError<FstVarDirection>
type Error = TryFromPrimitiveError<FstVarDirection>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for FstVarDirection
impl TryFromPrimitive for FstVarDirection
const NAME: &'static str = "FstVarDirection"
type Primitive = u8
type Error = TryFromPrimitiveError<FstVarDirection>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for FstVarDirection
impl StructuralPartialEq for FstVarDirection
Auto Trait Implementations§
impl Freeze for FstVarDirection
impl RefUnwindSafe for FstVarDirection
impl Send for FstVarDirection
impl Sync for FstVarDirection
impl Unpin for FstVarDirection
impl UnwindSafe for FstVarDirection
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