#[repr(C)]pub struct DataChannelInit {
pub ordered: bool,
pub has_max_retransmit_time: bool,
pub max_retransmit_time: i32,
pub has_max_retransmits: bool,
pub max_retransmits: i32,
pub protocol: String,
pub negotiated: bool,
pub id: i32,
pub has_priority: bool,
pub priority: Priority,
}Fields§
§ordered: bool§has_max_retransmit_time: bool§max_retransmit_time: i32§has_max_retransmits: bool§max_retransmits: i32§protocol: String§negotiated: bool§id: i32§has_priority: bool§priority: PriorityTrait Implementations§
Source§impl Debug for DataChannelInit
impl Debug for DataChannelInit
Source§impl ExternType for DataChannelInit
impl ExternType for DataChannelInit
Auto Trait Implementations§
impl Freeze for DataChannelInit
impl RefUnwindSafe for DataChannelInit
impl Send for DataChannelInit
impl Sync for DataChannelInit
impl Unpin for DataChannelInit
impl UnwindSafe for DataChannelInit
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