pub enum Hier<'a> {
Scope(Scope<'a>),
Upscope,
Var(Var<'a>),
AttrBegin(Attr<'a>),
AttrEnd,
}Expand description
Hierarchy of FST waveform.
Variants§
Scope(Scope<'a>)
Begin of a scope.
Upscope
End of a scope.
Var(Var<'a>)
Variable.
AttrBegin(Attr<'a>)
Begin of an attribute.
AttrEnd
End of an attribute.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Hier<'a>
impl<'a> RefUnwindSafe for Hier<'a>
impl<'a> !Send for Hier<'a>
impl<'a> !Sync for Hier<'a>
impl<'a> Unpin for Hier<'a>
impl<'a> UnwindSafe for Hier<'a>
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