Struct candidateparser::IceCandidate [] [src]

pub struct IceCandidate {
    pub foundation: String,
    pub component_id: u32,
    pub transport: Transport,
    pub priority: u64,
    pub connection_address: IpAddr,
    pub port: u16,
    pub candidate_type: CandidateType,
    pub rel_addr: Option<IpAddr>,
    pub rel_port: Option<u16>,
    pub extensions: Option<HashMap<Vec<u8>, Vec<u8>>>,
}

The ICE candidate struct. Contains all data from the SDP.

Fields

Trait Implementations

impl Debug for IceCandidate
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for IceCandidate
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for IceCandidate
[src]

impl Clone for IceCandidate
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more