Struct rosc::OscMessage [] [src]

pub struct OscMessage {
    pub addr: String,
    pub args: Option<Vec<OscType>>,
}

An OSC message consists of an address and zero or more arguments. The address should specify an element of your Instrument (or whatever you want to control with OSC) and the arguments are used to set properties of the element to the respective values.

Fields

addr: String args: Option<Vec<OscType>>

Trait Implementations

impl PartialEq for OscMessage
[src]

fn eq(&self, __arg_0: &OscMessage) -> bool

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

fn ne(&self, __arg_0: &OscMessage) -> bool

This method tests for !=.

impl Debug for OscMessage
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.