Home
last modified time | relevance | path

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

/xiu/protocol/rtsp/src/http/
H A Dmod.rs106 pub struct RtspResponse { struct
114 impl Unmarshal for RtspResponse { implementation
116 let mut rtsp_response = RtspResponse::default(); in unmarshal()
158 impl Marshal for RtspResponse { implementation
/xiu/protocol/rtsp/src/session/
H A Dmod.rs6 use crate::http::RtspResponse;
638 fn gen_response(status_code: StatusCode, rtsp_request: &RtspRequest) -> RtspResponse { in gen_response() argument
645 let mut response = RtspResponse { in gen_response()
697 async fn send_response(&mut self, response: &RtspResponse) -> Result<(), SessionError> { in send_response()