Enum nannou::osc::Type [] [src]

pub enum Type {
    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 PartialEq<OscType> for OscType
[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 Clone for OscType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for OscType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for OscType

impl Sync for OscType