pub enum InstanceType {
Resistor,
Capacitor,
VoltageSource,
CurrentSource,
MOSFET,
BJT,
Diode,
Subckt,
Unknown(u8),
}
Variants§
Resistor
R
Capacitor
C
VoltageSource
V
CurrentSource
I
MOSFET
M
BJT
Q
Diode
D
Subckt
X
Unknown(u8)
char
Trait Implementations§
Source§impl Clone for InstanceType
impl Clone for InstanceType
Source§fn clone(&self) -> InstanceType
fn clone(&self) -> InstanceType
Returns a copy 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 moreSource§impl Debug for InstanceType
impl Debug for InstanceType
Source§impl From<u8> for InstanceType
impl From<u8> for InstanceType
impl Copy for InstanceType
Auto Trait Implementations§
impl Freeze for InstanceType
impl RefUnwindSafe for InstanceType
impl Send for InstanceType
impl Sync for InstanceType
impl Unpin for InstanceType
impl UnwindSafe for InstanceType
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