pub enum HybridCoderError<E> {
NotImplemented(&'static str),
Coder(E),
}Variants§
Trait Implementations§
Source§impl<E> Debug for HybridCoderError<E>where
E: Debug,
impl<E> Debug for HybridCoderError<E>where
E: Debug,
Source§impl<E> Display for HybridCoderError<E>
impl<E> Display for HybridCoderError<E>
Source§impl<E> Error for HybridCoderError<E>
impl<E> Error for HybridCoderError<E>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<E> From<E> for HybridCoderError<E>
impl<E> From<E> for HybridCoderError<E>
Source§fn from(source: E) -> HybridCoderError<E>
fn from(source: E) -> HybridCoderError<E>
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> Freeze for HybridCoderError<E>where
E: Freeze,
impl<E> RefUnwindSafe for HybridCoderError<E>where
E: RefUnwindSafe,
impl<E> Send for HybridCoderError<E>where
E: Send,
impl<E> Sync for HybridCoderError<E>where
E: Sync,
impl<E> Unpin for HybridCoderError<E>where
E: Unpin,
impl<E> UnwindSafe for HybridCoderError<E>where
E: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<E, T, Request> FromReq<StreamingText, Request, E> for T
impl<E, T, Request> FromReq<StreamingText, Request, E> for T
Source§impl<S, T> FromStream<T> for S
impl<S, T> FromStream<T> for S
Source§fn from_stream(stream: impl Stream<Item = T> + Send + 'static) -> S
fn from_stream(stream: impl Stream<Item = T> + Send + 'static) -> S
Creates a signal that contains the latest value of the stream.
Source§fn from_stream_unsync(stream: impl Stream<Item = T> + 'static) -> S
fn from_stream_unsync(stream: impl Stream<Item = T> + 'static) -> S
Creates a signal that contains the latest value of the stream.
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.