[][src]Enum vcd::Command

pub enum Command {
    Comment(String),
    Date(String),
    Version(String),
    Timescale(u32TimescaleUnit),
    ScopeDef(ScopeTypeString),
    Upscope,
    VarDef(VarTypeu32IdCodeStringOption<ReferenceIndex>),
    Enddefinitions,
    Timestamp(u64),
    ChangeScalar(IdCodeValue),
    ChangeVector(IdCodeVec<Value>),
    ChangeReal(IdCodef64),
    ChangeString(IdCodeString),
    Begin(SimulationCommand),
    End(SimulationCommand),
}

An element in a VCD file.

Variants

Comment(String)

A $comment command

Date(String)

A $date command

Version(String)

A $version command

Timescale(u32TimescaleUnit)

A $timescale command

ScopeDef(ScopeTypeString)

A $scope command

Upscope

An $upscope command

A $var command

Enddefinitions

An $enddefinitions command

Timestamp(u64)

A #xxx timestamp

ChangeScalar(IdCodeValue)

A 0a change to a scalar variable

ChangeVector(IdCodeVec<Value>)

A b0000 a change to a vector variable

ChangeReal(IdCodef64)

A r1.234 a change to a real variable

ChangeString(IdCodeString)

A sSTART a change to a (real?) variable

A beginning of a simulation command. Unlike header commands, which are parsed atomically, simulation commands emit a Begin, followed by the data changes within them, followed by End.

An end of a simulation command.

Trait Implementations

impl Clone for Command[src]

impl PartialEq<Command> for Command[src]

impl Debug for Command[src]

Auto Trait Implementations

impl Send for Command

impl Unpin for Command

impl Sync for Command

impl UnwindSafe for Command

impl RefUnwindSafe for Command

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]