pub struct OscServerConfig {
pub bind_addr: SocketAddr,
pub node_id: NodeId,
pub recv_buffer_size: usize,
}Expand description
Configuration for the OSC server.
Fields§
§bind_addr: SocketAddrAddress to bind to (e.g., “0.0.0.0:9000”).
node_id: NodeIdThis node’s ID for filtering targeted messages.
recv_buffer_size: usizeBuffer size for UDP packets.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OscServerConfig
impl RefUnwindSafe for OscServerConfig
impl Send for OscServerConfig
impl Sync for OscServerConfig
impl Unpin for OscServerConfig
impl UnwindSafe for OscServerConfig
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