pub enum ValueChangeItem {
Timestamp {
step: u128,
},
Scalar {
identifier: String,
value: ScalarValue,
},
}
Expand description
An item in the value change section of a VCD file, which can be a timestamp entry, a change in the value of a signal (at the last seen timestamp), or some other command (not currently supported).
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValueChangeItem
impl RefUnwindSafe for ValueChangeItem
impl Send for ValueChangeItem
impl Sync for ValueChangeItem
impl Unpin for ValueChangeItem
impl UnwindSafe for ValueChangeItem
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