Struct webrtc_ice::agent::Agent[][src]

pub struct Agent { /* fields omitted */ }

Implementations

impl Agent[src]

pub async fn dial(
    &self,
    cancel_rx: Receiver<()>,
    remote_ufrag: String,
    remote_pwd: String
) -> Result<Arc<impl Conn>, Error>
[src]

pub async fn accept(
    &self,
    cancel_rx: Receiver<()>,
    remote_ufrag: String,
    remote_pwd: String
) -> Result<Arc<impl Conn>, Error>
[src]

impl Agent[src]

pub async fn new(config: AgentConfig) -> Result<Agent, Error>[src]

pub async fn on_connection_state_change(&self, f: OnConnectionStateChangeHdlrFn)[src]

pub async fn on_selected_candidate_pair_change(
    &self,
    f: OnSelectedCandidatePairChangeHdlrFn
)
[src]

pub async fn on_candidate(&self, f: OnCandidateHdlrFn)[src]

pub async fn add_remote_candidate(
    &self,
    c: &Arc<dyn Candidate + Send + Sync>
) -> Result<(), Error>
[src]

pub async fn get_local_candidates(
    &self
) -> Result<Vec<Arc<dyn Candidate + Send + Sync>>, Error>
[src]

pub async fn get_local_user_credentials(&self) -> (String, String)[src]

pub async fn get_remote_user_credentials(&self) -> (String, String)[src]

pub async fn close(&self) -> Result<(), Error>[src]

pub async fn set_remote_credentials(
    &self,
    remote_ufrag: String,
    remote_pwd: String
) -> Result<(), Error>
[src]

pub async fn restart(&self, ufrag: String, pwd: String) -> Result<(), Error>[src]

pub async fn gather_candidates(&self) -> Result<(), Error>[src]

pub async fn get_candidate_pairs_stats(&self) -> Vec<CandidatePairStats>[src]

pub async fn get_local_candidates_stats(&self) -> Vec<CandidateStats>[src]

pub async fn get_remote_candidates_stats(&self) -> Vec<CandidateStats>[src]

pub async fn unmarshal_remote_candidate(
    &self,
    raw: String
) -> Result<impl Candidate, Error>
[src]

Auto Trait Implementations

impl !RefUnwindSafe for Agent

impl Send for Agent

impl Sync for Agent

impl Unpin for Agent

impl !UnwindSafe for Agent

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T

impl<T> Pipe for T where
    T: ?Sized

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,