Lines Matching refs:error
8 tokio::sync::oneshot::error::RecvError,
9 webrtc::error::Error as RTCError,
50 fn from(error: RTCError) -> Self { in from()
52 value: SessionErrorValue::RTCError(error), in from()
58 fn from(error: BytesIOError) -> Self { in from()
60 value: SessionErrorValue::BytesIOError(error), in from()
66 fn from(error: BytesReadError) -> Self { in from()
68 value: SessionErrorValue::BytesReadError(error), in from()
74 fn from(error: BytesWriteError) -> Self { in from()
76 value: SessionErrorValue::BytesWriteError(error), in from()
82 fn from(error: Utf8Error) -> Self { in from()
84 value: SessionErrorValue::Utf8Error(error), in from()
90 fn from(error: ChannelError) -> Self { in from()
92 value: SessionErrorValue::ChannelError(error), in from()
98 fn from(error: RecvError) -> Self { in from()
100 value: SessionErrorValue::RecvError(error), in from()