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
addr: String
args: Option<Vec<OscType>>
Trait Implementations
impl PartialEq<OscMessage> for OscMessage
[src]
fn eq(&self, __arg_0: &OscMessage) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &OscMessage) -> bool
[src]
This method tests for !=
.
impl Clone for OscMessage
[src]
fn clone(&self) -> OscMessage
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for OscMessage
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more