Home
last modified time | relevance | path

Searched refs:Unstarted (Results 1 – 1 of 1) sorted by relevance

/webrtc/webrtc/src/rtp_transceiver/rtp_receiver/
H A Dmod.rs32 Unstarted = 0, enumerator
49 v if v == State::Unstarted as u8 => State::Unstarted, in from()
66 State::Unstarted => write!(f, "Unstarted"), in fmt()
84 Self::Unstarted in transition()
91 if matches!(to, Self::Unstarted | Self::Stopped | Self::Paused) => in transition()
366 State::Unstarted => State::transition(State::UnstartedPaused, &self.state_tx), in pause()
376 State::UnstartedPaused => State::transition(State::Unstarted, &self.state_tx), in resume()
412 let (state_tx, state_rx) = watch::channel(State::Unstarted); in new()