Struct nannou::osc::Message[][src]

pub struct Message {
    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

Trait Implementations

impl Clone for OscMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OscMessage
[src]

Formats the value using the given formatter. Read more

impl PartialEq<OscMessage> for OscMessage
[src]

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

This method tests for !=.

impl From<Message> for Packet
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for OscMessage

impl Sync for OscMessage