[][src]Struct vcd::IdCode

pub struct IdCode(_);

An ID used within the file to refer to a particular variable.

Implementations

impl IdCode[src]

pub const FIRST: IdCode[src]

An arbitrary IdCode with a short representation.

pub fn next(&self) -> IdCode[src]

Returns the IdCode following this one in an arbitrary sequence.

Trait Implementations

impl Clone for IdCode[src]

impl Copy for IdCode[src]

impl Debug for IdCode[src]

impl Display for IdCode[src]

impl Eq for IdCode[src]

impl From<u32> for IdCode[src]

impl From<u64> for IdCode[src]

impl FromStr for IdCode[src]

type Err = InvalidData

The associated error which can be returned from parsing.

impl Hash for IdCode[src]

impl Ord for IdCode[src]

impl PartialEq<IdCode> for IdCode[src]

impl PartialOrd<IdCode> for IdCode[src]

impl StructuralEq for IdCode[src]

impl StructuralPartialEq for IdCode[src]

Auto Trait Implementations

impl RefUnwindSafe for IdCode

impl Send for IdCode

impl Sync for IdCode

impl Unpin for IdCode

impl UnwindSafe for IdCode

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.