pub enum DiodeKind {
Signal,
Rectifier,
Zener,
Schottky,
Led,
Tvs,
Photodiode,
Unknown,
Custom(String),
}Expand description
Descriptive diode kind vocabulary.
Variants§
Trait Implementations§
Source§impl Ord for DiodeKind
impl Ord for DiodeKind
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 DiodeKind
impl PartialOrd for DiodeKind
impl Eq for DiodeKind
impl StructuralPartialEq for DiodeKind
Auto Trait Implementations§
impl Freeze for DiodeKind
impl RefUnwindSafe for DiodeKind
impl Send for DiodeKind
impl Sync for DiodeKind
impl Unpin for DiodeKind
impl UnsafeUnpin for DiodeKind
impl UnwindSafe for DiodeKind
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