#[repr(C)]pub struct RiceAgentSelectedPair {
pub stream_id: usize,
pub component_id: usize,
pub local: RiceCandidate,
pub remote: RiceCandidate,
}Expand description
A new pair has been selected for a component.
Fields§
§stream_id: usizeThe ICE stream id.
component_id: usizeThe ICE component id.
local: RiceCandidateThe local candidate of a selected pair.
remote: RiceCandidateThe remote candidate of a selected pair.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RiceAgentSelectedPair
impl RefUnwindSafe for RiceAgentSelectedPair
impl !Send for RiceAgentSelectedPair
impl !Sync for RiceAgentSelectedPair
impl Unpin for RiceAgentSelectedPair
impl UnwindSafe for RiceAgentSelectedPair
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