Searched refs:RtcpError (Results 1 – 6 of 6) sorted by relevance
| /xiu/protocol/rtsp/src/rtp/rtcp/ |
| H A D | errors.rs | 6 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 D | rtcp_rr.rs | 1 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 D | rtcp_header.rs | 1 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 D | rtcp_app.rs | 1 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 D | rtcp_bye.rs | 1 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 D | rtcp_sr.rs | 1 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
|