Enum opentracingrust::TagValue [] [src]

pub enum TagValue {
    Boolean(bool),
    Float(f64),
    Integer(i64),
    String(String),
}

Enumeration of valid types for tag values.

Variants

Trait Implementations

impl Clone for TagValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TagValue
[src]

[src]

Formats the value using the given formatter.

impl From<bool> for TagValue
[src]

[src]

Performs the conversion.

impl From<f64> for TagValue
[src]

[src]

Performs the conversion.

impl From<i64> for TagValue
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl From<String> for TagValue
[src]

[src]

Performs the conversion.