pub struct AST<'s> {
pub subckt: IndexMap<String, Subckt<'s>>,
pub instance: Vec<Instance<'s>>,
pub model: Vec<Model<'s>>,
pub param: Vec<KeyValue<'s>>,
pub option: Vec<(Cow<'s, str>, Option<Value<'s>>)>,
pub init_condition: Vec<(Cow<'s, str>, Value<'s>, Option<Cow<'s, str>>)>,
pub nodeset: Vec<(Cow<'s, str>, Value<'s>, Option<Cow<'s, str>>)>,
pub general: Vec<General<'s>>,
pub data: Vec<Data<'s>>,
pub unknwon: Vec<Unknwon<'s>>,
}Fields§
§subckt: IndexMap<String, Subckt<'s>>§instance: Vec<Instance<'s>>§model: Vec<Model<'s>>§param: Vec<KeyValue<'s>>§option: Vec<(Cow<'s, str>, Option<Value<'s>>)>§init_condition: Vec<(Cow<'s, str>, Value<'s>, Option<Cow<'s, str>>)>transient initial conditions https://eda-cpu1.eias.junzhuo.site/~junzhuo/hspice/index.htm#page/hspice_14/ic.htm
node, val, [subckt]
nodeset: Vec<(Cow<'s, str>, Value<'s>, Option<Cow<'s, str>>)>Initializes specified nodal voltages for DC operating point analysis and corrects convergence problems in DC analysis. https://eda-cpu1.eias.junzhuo.site/~junzhuo/hspice/index.htm#page/hspice_14/nodeset.htm
node, val, [subckt]
general: Vec<General<'s>>§data: Vec<Data<'s>>§unknwon: Vec<Unknwon<'s>>Trait Implementations§
Auto Trait Implementations§
impl<'s> Freeze for AST<'s>
impl<'s> RefUnwindSafe for AST<'s>
impl<'s> Send for AST<'s>
impl<'s> Sync for AST<'s>
impl<'s> Unpin for AST<'s>
impl<'s> UnwindSafe for AST<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more