pub enum TransistorKind {
Bjt(BjtKind),
Fet(FetKind),
Unknown,
Custom(String),
}Expand description
Descriptive transistor kind vocabulary.
Variants§
Trait Implementations§
Source§impl Clone for TransistorKind
impl Clone for TransistorKind
Source§fn clone(&self) -> TransistorKind
fn clone(&self) -> TransistorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransistorKind
impl Debug for TransistorKind
Source§impl Display for TransistorKind
impl Display for TransistorKind
Source§impl Hash for TransistorKind
impl Hash for TransistorKind
Source§impl Ord for TransistorKind
impl Ord for TransistorKind
Source§fn cmp(&self, other: &TransistorKind) -> Ordering
fn cmp(&self, other: &TransistorKind) -> Ordering
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 PartialEq for TransistorKind
impl PartialEq for TransistorKind
Source§fn eq(&self, other: &TransistorKind) -> bool
fn eq(&self, other: &TransistorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TransistorKind
impl PartialOrd for TransistorKind
impl Eq for TransistorKind
impl StructuralPartialEq for TransistorKind
Auto Trait Implementations§
impl Freeze for TransistorKind
impl RefUnwindSafe for TransistorKind
impl Send for TransistorKind
impl Sync for TransistorKind
impl Unpin for TransistorKind
impl UnsafeUnpin for TransistorKind
impl UnwindSafe for TransistorKind
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