pub struct SignalingConfig {
pub max_peers_per_room: usize,
pub message_buffer_size: usize,
}Expand description
Configuration for the signaling server.
Fields§
§max_peers_per_room: usizeMaximum peers per room (0 = unlimited).
message_buffer_size: usizeMessage buffer size per client.
Trait Implementations§
Source§impl Clone for SignalingConfig
impl Clone for SignalingConfig
Source§fn clone(&self) -> SignalingConfig
fn clone(&self) -> SignalingConfig
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 SignalingConfig
impl Debug for SignalingConfig
Auto Trait Implementations§
impl Freeze for SignalingConfig
impl RefUnwindSafe for SignalingConfig
impl Send for SignalingConfig
impl Sync for SignalingConfig
impl Unpin for SignalingConfig
impl UnwindSafe for SignalingConfig
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