Lines Matching refs:SessionError
28 use errors::SessionError;
86 fn new(reader: &mut BytesReader) -> Result<Option<Self>, SessionError> { in new() argument
128 pub async fn run(&mut self) -> Result<(), SessionError> { in run() argument
157 ) -> Result<(), SessionError> { in on_rtp_over_rtsp_message() argument
177 async fn on_rtsp_message(&mut self) -> Result<(), SessionError> { in on_rtsp_message() argument
217 async fn handle_options(&mut self, rtsp_request: &RtspRequest) -> Result<(), SessionError> { in handle_options() argument
227 async fn handle_describe(&mut self, rtsp_request: &RtspRequest) -> Result<(), SessionError> { in handle_describe() argument
242 return Err(SessionError { in handle_describe()
267 async fn handle_announce(&mut self, rtsp_request: &RtspRequest) -> Result<(), SessionError> { in handle_announce() argument
290 return Err(SessionError { in handle_announce()
326 async fn handle_setup(&mut self, rtsp_request: &RtspRequest) -> Result<(), SessionError> { in handle_setup() argument
413 async fn handle_play(&mut self, rtsp_request: &RtspRequest) -> Result<(), SessionError> { in handle_play() argument
475 return Err(SessionError { in handle_play()
522 return Err(SessionError { in handle_play()
530 pub fn unsubscribe_from_stream_hub(&mut self, stream_path: String) -> Result<(), SessionError> { in unsubscribe_from_stream_hub() argument
544 async fn handle_record(&mut self, rtsp_request: &RtspRequest) -> Result<(), SessionError> { in handle_record() argument
563 fn handle_teardown(&mut self, rtsp_request: &RtspRequest) -> Result<(), SessionError> { in handle_teardown() argument
576 Err(SessionError { in handle_teardown()
590 fn new_tracks(&mut self) -> Result<(), SessionError> { in new_tracks() argument
697 async fn send_response(&mut self, response: &RtspResponse) -> Result<(), SessionError> { in send_response() argument