pub struct OscBridgeConfig {
pub bind_addr: String,
pub remote_addr: Option<String>,
pub namespace: String,
}Expand description
OSC bridge configuration
Fields§
§bind_addr: StringLocal address to bind
remote_addr: Option<String>Remote address to send to (optional)
namespace: StringAddress prefix for Clasp
Trait Implementations§
Source§impl Clone for OscBridgeConfig
impl Clone for OscBridgeConfig
Source§fn clone(&self) -> OscBridgeConfig
fn clone(&self) -> OscBridgeConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 OscBridgeConfig
impl Debug for OscBridgeConfig
Auto Trait Implementations§
impl Freeze for OscBridgeConfig
impl RefUnwindSafe for OscBridgeConfig
impl Send for OscBridgeConfig
impl Sync for OscBridgeConfig
impl Unpin for OscBridgeConfig
impl UnwindSafe for OscBridgeConfig
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