Lines Matching refs:error
9 tokio::sync::oneshot::error::RecvError,
44 fn from(error: BytesIOError) -> Self { in from()
46 value: SessionErrorValue::BytesIOError(error), in from()
52 fn from(error: BytesReadError) -> Self { in from()
54 value: SessionErrorValue::BytesReadError(error), in from()
60 fn from(error: BytesWriteError) -> Self { in from()
62 value: SessionErrorValue::BytesWriteError(error), in from()
68 fn from(error: Utf8Error) -> Self { in from()
70 value: SessionErrorValue::Utf8Error(error), in from()
76 fn from(error: PackerError) -> Self { in from()
78 value: SessionErrorValue::PackerError(error), in from()
84 fn from(error: UnPackerError) -> Self { in from()
86 value: SessionErrorValue::UnPackerError(error), in from()
92 fn from(error: ChannelError) -> Self { in from()
94 value: SessionErrorValue::ChannelError(error), in from()
100 fn from(error: RecvError) -> Self { in from()
102 value: SessionErrorValue::RecvError(error), in from()