pub enum GreetingDecodeError {
Incomplete,
Failed,
}
Expand description
Error during greeting decoding.
Variants§
Trait Implementations§
Source§impl Clone for GreetingDecodeError
impl Clone for GreetingDecodeError
Source§fn clone(&self) -> GreetingDecodeError
fn clone(&self) -> GreetingDecodeError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GreetingDecodeError
impl Debug for GreetingDecodeError
Source§impl IntoBoundedStatic for GreetingDecodeError
impl IntoBoundedStatic for GreetingDecodeError
Source§type Static = GreetingDecodeError
type Static = GreetingDecodeError
The target type is bounded by the
'static
lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T
into an owned T
such that T: 'static
.Source§impl PartialEq for GreetingDecodeError
impl PartialEq for GreetingDecodeError
impl Eq for GreetingDecodeError
impl StructuralPartialEq for GreetingDecodeError
Auto Trait Implementations§
impl Freeze for GreetingDecodeError
impl RefUnwindSafe for GreetingDecodeError
impl Send for GreetingDecodeError
impl Sync for GreetingDecodeError
impl Unpin for GreetingDecodeError
impl UnwindSafe for GreetingDecodeError
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