pub struct LocalAST {
pub subckt: Vec<SubcktBuilder>,
pub instance: Vec<InstanceBuilder>,
pub model: Vec<ModelBuilder>,
pub param: Vec<KeyValueBuilder>,
pub option: Vec<(Span, Option<ValueBuilder>)>,
pub data: Vec<DataBuilder>,
pub general: Vec<GeneralBuilder>,
pub init_condition: Vec<(Span, ValueBuilder, Option<Span>)>,
pub nodeset: Vec<(Span, ValueBuilder, Option<Span>)>,
pub unknwon: Vec<UnknwonBuilder>,
pub errors: Vec<ParseError>,
}
Expand description
The .include
and .lib file tt
will be directly evaluated
Fields§
§subckt: Vec<SubcktBuilder>
§instance: Vec<InstanceBuilder>
§model: Vec<ModelBuilder>
§param: Vec<KeyValueBuilder>
§option: Vec<(Span, Option<ValueBuilder>)>
§data: Vec<DataBuilder>
§general: Vec<GeneralBuilder>
§init_condition: Vec<(Span, ValueBuilder, Option<Span>)>
§nodeset: Vec<(Span, ValueBuilder, Option<Span>)>
§unknwon: Vec<UnknwonBuilder>
§errors: Vec<ParseError>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LocalAST
impl !RefUnwindSafe for LocalAST
impl Send for LocalAST
impl Sync for LocalAST
impl Unpin for LocalAST
impl !UnwindSafe for LocalAST
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> 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