pub enum ProjectedPeerBiHandoff {
Handled,
Unhandled {
send: PeerSendStream,
recv: PeerRecvStream,
},
}Expand description
Result of offering one already-admitted, already-protected peer stream to
the OpenRTC-owned native protocol projection. A host must continue its own
protocol dispatch only for Unhandled; there is still exactly one owner of
the underlying incoming-stream queue.
Variants§
Auto Trait Implementations§
impl !RefUnwindSafe for ProjectedPeerBiHandoff
impl !UnwindSafe for ProjectedPeerBiHandoff
impl Freeze for ProjectedPeerBiHandoff
impl Send for ProjectedPeerBiHandoff
impl Sync for ProjectedPeerBiHandoff
impl Unpin for ProjectedPeerBiHandoff
impl UnsafeUnpin for ProjectedPeerBiHandoff
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