pub struct OscMessage {
pub addr: String,
pub args: Vec<OscType>,
}Expand description
A single OSC message with an address pattern and arguments.
Fields§
§addr: StringOSC address pattern (e.g. /audio/volume).
args: Vec<OscType>Type-tagged argument values.
Trait Implementations§
Source§impl Clone for OscMessage
impl Clone for OscMessage
Source§fn clone(&self) -> OscMessage
fn clone(&self) -> OscMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OscMessage
impl Debug for OscMessage
Source§impl PartialEq for OscMessage
impl PartialEq for OscMessage
Source§fn eq(&self, other: &OscMessage) -> bool
fn eq(&self, other: &OscMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OscMessage
Auto Trait Implementations§
impl Freeze for OscMessage
impl RefUnwindSafe for OscMessage
impl Send for OscMessage
impl Sync for OscMessage
impl Unpin for OscMessage
impl UnsafeUnpin for OscMessage
impl UnwindSafe for OscMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more