pub struct BJT<'s> {
pub nc: Cow<'s, str>,
pub nb: Cow<'s, str>,
pub ne: Cow<'s, str>,
pub ns: Option<Cow<'s, str>>,
pub mname: Cow<'s, str>,
pub params: Vec<KeyValue<'s>>,
}Expand description
https://eda-cpu1.eias.junzhuo.site/~junzhuo/hspice/index.htm#page/hspice_11/bipolar_junction_transistor_bjt_element.htm
Fields§
§nc: Cow<'s, str>§nb: Cow<'s, str>§ne: Cow<'s, str>§ns: Option<Cow<'s, str>>§mname: Cow<'s, str>§params: Vec<KeyValue<'s>>Trait Implementations§
Auto Trait Implementations§
impl<'s> Freeze for BJT<'s>
impl<'s> RefUnwindSafe for BJT<'s>
impl<'s> Send for BJT<'s>
impl<'s> Sync for BJT<'s>
impl<'s> Unpin for BJT<'s>
impl<'s> UnwindSafe for BJT<'s>
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