Enum TransistorKind
pub enum TransistorKind {
Bjt(BjtKind),
Fet(FetKind),
Unknown,
Custom(String),
}Expand description
Descriptive transistor kind vocabulary.
Variants§
Trait Implementations§
§impl Clone for TransistorKind
impl Clone for TransistorKind
§fn clone(&self) -> TransistorKind
fn clone(&self) -> TransistorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for TransistorKind
impl Debug for TransistorKind
§impl Display for TransistorKind
impl Display for TransistorKind
§impl Hash for TransistorKind
impl Hash for TransistorKind
§impl Ord for TransistorKind
impl Ord for TransistorKind
§impl PartialEq for TransistorKind
impl PartialEq for TransistorKind
§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