pub struct AgentSelectedPair {
pub stream_id: usize,
pub component_id: usize,
pub local: Candidate,
pub remote: Candidate,
pub turn: Option<SelectedTurn>,
}Expand description
A new pair has been selected for a component.
Fields§
§stream_id: usizeThe ICE stream id within the agent.
component_id: usizeThe ICE component id within the stream.
local: CandidateThe local candidate that has been selected.
remote: CandidateThe remote candidate that has been selected.
turn: Option<SelectedTurn>The selected local candidate TURN connection (if any).