Enum metrix::snapshot::ItemKind [] [src]

pub enum ItemKind {
    Text(String),
    Boolean(bool),
    Float(f64),
    UInt(u64),
    Int(i64),
    Snapshot(Snapshot),
}

Variants

Simply a String in the `Snapshot.

Unfortunately the name String was already taken...

Trait Implementations

impl Debug for ItemKind
[src]

[src]

Formats the value using the given formatter.

impl Clone for ItemKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ItemKind
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<u64> for ItemKind
[src]

[src]

Performs the conversion.

impl From<u32> for ItemKind
[src]

[src]

Performs the conversion.

impl From<u16> for ItemKind
[src]

[src]

Performs the conversion.

impl From<u8> for ItemKind
[src]

[src]

Performs the conversion.

impl From<usize> for ItemKind
[src]

[src]

Performs the conversion.

impl From<i64> for ItemKind
[src]

[src]

Performs the conversion.

impl From<i32> for ItemKind
[src]

[src]

Performs the conversion.

impl From<i16> for ItemKind
[src]

[src]

Performs the conversion.

impl From<i8> for ItemKind
[src]

[src]

Performs the conversion.

impl From<isize> for ItemKind
[src]

[src]

Performs the conversion.

impl From<String> for ItemKind
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for ItemKind
[src]

[src]

Performs the conversion.

impl From<f64> for ItemKind
[src]

[src]

Performs the conversion.

impl From<f32> for ItemKind
[src]

[src]

Performs the conversion.