Lines Matching refs:error

17     tokio::sync::oneshot::error::RecvError,
85 fn from(error: Amf0WriteError) -> Self { in from()
87 value: SessionErrorValue::Amf0WriteError(error), in from()
93 fn from(error: BytesWriteError) -> Self { in from()
95 value: SessionErrorValue::BytesWriteError(error), in from()
109 fn from(error: UnpackError) -> Self { in from()
111 value: SessionErrorValue::UnPackError(error), in from()
117 fn from(error: MessageError) -> Self { in from()
119 value: SessionErrorValue::MessageError(error), in from()
125 fn from(error: ControlMessagesError) -> Self { in from()
127 value: SessionErrorValue::ControlMessagesError(error), in from()
133 fn from(error: NetConnectionError) -> Self { in from()
135 value: SessionErrorValue::NetConnectionError(error), in from()
141 fn from(error: NetStreamError) -> Self { in from()
143 value: SessionErrorValue::NetStreamError(error), in from()
149 fn from(error: EventMessagesError) -> Self { in from()
151 value: SessionErrorValue::EventMessagesError(error), in from()
157 fn from(error: BytesIOError) -> Self { in from()
159 value: SessionErrorValue::BytesIOError(error), in from()
165 fn from(error: PackError) -> Self { in from()
167 value: SessionErrorValue::PackError(error), in from()
173 fn from(error: HandshakeError) -> Self { in from()
175 value: SessionErrorValue::HandshakeError(error), in from()
181 fn from(error: CacheError) -> Self { in from()
183 value: SessionErrorValue::CacheError(error), in from()
189 fn from(error: RecvError) -> Self { in from()
191 value: SessionErrorValue::RecvError(error), in from()
197 fn from(error: ChannelError) -> Self { in from()
199 value: SessionErrorValue::ChannelError(error), in from()