Enum tinyosc::Argument [] [src]

pub enum Argument<'a> {
    i(i32),
    f(f32),
    s(&'a str),
    T,
    F,
    None,
}

Variants

Methods

impl<'a> Argument<'a>
[src]

Trait Implementations

impl<'a> Debug for Argument<'a>
[src]

Formats the value using the given formatter.

impl<'a> From<bool> for Argument<'a>
[src]

Performs the conversion.

impl<'a> From<i32> for Argument<'a>
[src]

Performs the conversion.

impl<'a> From<f32> for Argument<'a>
[src]

Performs the conversion.

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

Performs the conversion.