pub enum PinRole {
Input,
Output,
Bidirectional,
Power,
Ground,
Clock,
Reset,
Enable,
NoConnect,
Unknown,
Custom(String),
}Expand description
Descriptive electronic pin roles.
Variants§
Trait Implementations§
Source§impl Ord for PinRole
impl Ord for PinRole
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for PinRole
impl PartialOrd for PinRole
impl Eq for PinRole
impl StructuralPartialEq for PinRole
Auto Trait Implementations§
impl Freeze for PinRole
impl RefUnwindSafe for PinRole
impl Send for PinRole
impl Sync for PinRole
impl Unpin for PinRole
impl UnsafeUnpin for PinRole
impl UnwindSafe for PinRole
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