Home
last modified time | relevance | path

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

/xiu/application/xiu/src/config/
H A Derrors.rs3 std::{fmt, io::Error},
13 IOError(Error),
16 impl From<Error> for ConfigError {
17 fn from(error: Error) -> Self { in from()
H A Dmod.rs141 Error, enumerator
/xiu/protocol/rtmp/src/relay/
H A Derrors.rs3 std::{fmt, io::Error},
26 IOError(Error),
29 impl From<Error> for ClientError {
30 fn from(error: Error) -> Self { in from()
/xiu/library/bytesio/src/
H A Dbytes_errors.rs15 IO(#[cause] io::Error),
35 impl From<io::Error> for BytesReadError {
36 fn from(error: io::Error) -> Self { in from()
67 IO(io::Error),
76 impl From<io::Error> for BytesWriteError {
77 fn from(error: io::Error) -> Self { in from()
H A Dbytesio_errors.rs13 IOError(io::Error),
30 impl From<io::Error> for BytesIOError {
31 fn from(error: io::Error) -> Self { in from()
/xiu/library/container/mpegts/src/
H A Derrors.rs5 std::io::Error,
17 IOError(Error),
52 impl From<Error> for MpegTsError {
53 fn from(error: Error) -> Self { in from()
/xiu/protocol/rtmp/src/handshake/
H A Derrors.rs4 std::{fmt, io::Error, time::SystemTimeError},
22 IOError(Error),
25 impl From<Error> for HandshakeError {
26 fn from(error: Error) -> Self { in from()
/xiu/protocol/hls/src/
H A Derrors.rs22 Error, enumerator
32 Error, enumerator
46 IOError(#[cause] std::io::Error),
89 impl From<std::io::Error> for MediaError {
90 fn from(error: std::io::Error) -> Self { in from()
120 Error, enumerator
H A Dserver.rs10 type GenericError = Box<dyn std::error::Error + Send + Sync>;
/xiu/protocol/rtsp/src/
H A Drtsp.rs5 use tokio::io::Error;
21 pub async fn run(&mut self) -> Result<(), Error> { in run() argument
/xiu/protocol/rtmp/src/amf0/
H A Derrors.rs47 BufferWriteError(io::Error),
57 impl From<io::Error> for Amf0WriteError {
58 fn from(error: io::Error) -> Self { in from()
/xiu/protocol/rtmp/src/
H A Drtmp.rs5 use tokio::io::Error;
23 pub async fn run(&mut self) -> Result<(), Error> { in run() argument
/xiu/protocol/webrtc/src/
H A Derrors.rs4 webrtc::error::Error as RTCError,
5 webrtc::util::Error as RTCUtilError,
H A Dwebrtc.rs10 use tokio::io::Error;
29 pub async fn run(&mut self) -> Result<(), Error> { in run() argument
/xiu/protocol/webrtc/src/clients/
H A Dwhep.js23 throw new Error("Already viewing")
83 throw new Error("Request rejected with status " + fetched.status)
85 throw new Error("Response missing location header")
353 throw new Error("Request rejected with status " + fetched.status)
395 throw new Error("whep resource does not support layer selection");
416 throw new Error("whep resource does not support layer selection");
450 throw new Error("WHEP resource url not available yet");
/xiu/library/logger/src/
H A Derrors.rs10 IOError(std::io::Error),
/xiu/protocol/httpflv/src/
H A Derrors.rs22 Error, enumerator
32 Error, enumerator
H A Dserver.rs13 type GenericError = Box<dyn std::error::Error + Send + Sync>;
/xiu/library/streamhub/src/
H A Ddefine.rs70 fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> in serialize()
93 fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> in serialize()
/xiu/protocol/webrtc/src/session/
H A Derrors.rs9 webrtc::error::Error as RTCError,
/xiu/protocol/rtmp/src/remuxer/
H A Derrors.rs22 Error, enumerator
/xiu/protocol/rtmp/src/session/
H A Dcommon.rs546 fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { in fmt() argument