Enum fst_native::FstVarDirection
source · #[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 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 FstVarDirection
impl Debug for FstVarDirection
source§impl PartialEq for FstVarDirection
impl PartialEq for FstVarDirection
source§fn eq(&self, other: &FstVarDirection) -> bool
fn eq(&self, other: &FstVarDirection) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl TryFrom<u8> for FstVarDirection
impl TryFrom<u8> for FstVarDirection
§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
type Primitive = u8
type Error = TryFromPrimitiveError<FstVarDirection>
const NAME: &'static str = "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