pub struct DataChannelOptions {
pub ordered: bool,
pub max_packet_life_time: Option<u16>,
pub max_retransmits: Option<u16>,
pub protocol: String,
pub negotiated: bool,
pub id: Option<u16>,
}
Fields§
§ordered: bool
§max_packet_life_time: Option<u16>
§max_retransmits: Option<u16>
§protocol: String
§negotiated: bool
§id: Option<u16>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataChannelOptions
impl RefUnwindSafe for DataChannelOptions
impl Send for DataChannelOptions
impl Sync for DataChannelOptions
impl Unpin for DataChannelOptions
impl UnwindSafe for DataChannelOptions
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