Home
last modified time | relevance | path

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

/xiu/protocol/rtsp/src/rtp/rtcp/
H A Derrors.rs6 pub struct RtcpError { struct
18 impl From<BytesReadError> for RtcpError { implementation
20 RtcpError { in from()
26 impl From<BytesWriteError> for RtcpError { implementation
28 RtcpError { in from()
H A Drtcp_rr.rs1 use super::errors::RtcpError;
21 impl Unmarshal<&mut BytesReader, Result<Self, RtcpError>> for ReportBlock {
22 fn unmarshal(reader: &mut BytesReader) -> Result<Self, RtcpError> in unmarshal()
38 impl Marshal<Result<BytesMut, RtcpError>> for ReportBlock {
39 fn marshal(&self) -> Result<BytesMut, RtcpError> { in marshal() argument
61 impl Unmarshal<BytesMut, Result<Self, RtcpError>> for RtcpReceiverReport {
62 fn unmarshal(data: BytesMut) -> Result<Self, RtcpError> in unmarshal()
83 impl Marshal<Result<BytesMut, RtcpError>> for RtcpReceiverReport {
84 fn marshal(&self) -> Result<BytesMut, RtcpError> { in marshal() argument
H A Drtcp_header.rs1 use super::errors::RtcpError;
23 impl Unmarshal<&mut BytesReader, Result<Self, RtcpError>> for RtcpHeader {
24 fn unmarshal(reader: &mut BytesReader) -> Result<Self, RtcpError> in unmarshal()
41 impl Marshal<Result<BytesMut, RtcpError>> for RtcpHeader {
42 fn marshal(&self) -> Result<BytesMut, RtcpError> { in marshal() argument
H A Drtcp_app.rs1 use super::errors::RtcpError;
29 impl Unmarshal<BytesMut, Result<Self, RtcpError>> for RtcpApp {
30 fn unmarshal(data: BytesMut) -> Result<Self, RtcpError> in unmarshal()
47 impl Marshal<Result<BytesMut, RtcpError>> for RtcpApp {
48 fn marshal(&self) -> Result<BytesMut, RtcpError> { in marshal() argument
H A Drtcp_bye.rs1 use super::errors::RtcpError;
29 impl Unmarshal<BytesMut, Result<Self, RtcpError>> for RtcpBye {
30 fn unmarshal(data: BytesMut) -> Result<Self, RtcpError> in unmarshal()
53 impl Marshal<Result<BytesMut, RtcpError>> for RtcpBye {
54 fn marshal(&self) -> Result<BytesMut, RtcpError> { in marshal() argument
H A Drtcp_sr.rs1 use super::errors::RtcpError;
58 impl Unmarshal<&mut BytesReader, Result<Self, RtcpError>> for RtcpSenderReport {
59 fn unmarshal(reader: &mut BytesReader) -> Result<Self, RtcpError> in unmarshal()
82 impl Marshal<Result<BytesMut, RtcpError>> for RtcpSenderReport {
83 fn marshal(&self) -> Result<BytesMut, RtcpError> { in marshal() argument