Enum rosc::OscType [] [src]

pub enum OscType {
    Int(i32),
    Float(f32),
    String(String),
    Blob(Vec<u8>),
    Time(u32u32),
    Long(i64),
    Double(f64),
    Char(char),
    Color(OscColor),
    Midi(OscMidiMessage),
    Bool(bool),
    Nil,
    Inf,
}

see OSC Type Tag String: OSC Spec. 1.0 padding: zero bytes (n*4)

Variants

Trait Implementations

impl Clone for OscType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OscType
[src]

Formats the value using the given formatter.

impl PartialEq for OscType
[src]

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

This method tests for !=.