pub enum TransistorTerminal {
Base,
Collector,
Emitter,
Gate,
Drain,
Source,
Body,
}Expand description
Transistor terminal vocabulary.
Variants§
Trait Implementations§
Source§impl Clone for TransistorTerminal
impl Clone for TransistorTerminal
Source§fn clone(&self) -> TransistorTerminal
fn clone(&self) -> TransistorTerminal
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 TransistorTerminal
impl Debug for TransistorTerminal
Source§impl Display for TransistorTerminal
impl Display for TransistorTerminal
Source§impl FromStr for TransistorTerminal
impl FromStr for TransistorTerminal
Source§impl Hash for TransistorTerminal
impl Hash for TransistorTerminal
Source§impl Ord for TransistorTerminal
impl Ord for TransistorTerminal
Source§fn cmp(&self, other: &TransistorTerminal) -> Ordering
fn cmp(&self, other: &TransistorTerminal) -> 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 TransistorTerminal
impl PartialEq for TransistorTerminal
Source§fn eq(&self, other: &TransistorTerminal) -> bool
fn eq(&self, other: &TransistorTerminal) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TransistorTerminal
impl PartialOrd for TransistorTerminal
impl Copy for TransistorTerminal
impl Eq for TransistorTerminal
impl StructuralPartialEq for TransistorTerminal
Auto Trait Implementations§
impl Freeze for TransistorTerminal
impl RefUnwindSafe for TransistorTerminal
impl Send for TransistorTerminal
impl Sync for TransistorTerminal
impl Unpin for TransistorTerminal
impl UnsafeUnpin for TransistorTerminal
impl UnwindSafe for TransistorTerminal
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