pub enum Direction {
None,
Input,
Output,
InOut,
Clock,
Supply,
Ground,
}
Expand description
Signal type for pins.
Variants
None
No direction specified.
Input
Data input.
Output
Data output.
InOut
Input and output.
Clock
Clock input.
Supply
Power VDD.
Ground
Power ground.
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Direction
impl<'de> Deserialize<'de> for Direction
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Direction
impl Eq for Direction
impl StructuralEq for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnwindSafe for Direction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more