pub enum ScopeItem {
Scope {
scope_type: String,
identifier: String,
items: Vec<Self>,
},
VarDef {
signal: Signal,
identifier: String,
},
}
Expand description
A member item of some VCD scope, which is either another nested scope or a variable definition.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScopeItem
impl RefUnwindSafe for ScopeItem
impl Send for ScopeItem
impl Sync for ScopeItem
impl Unpin for ScopeItem
impl UnwindSafe for ScopeItem
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