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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GreetingDecodeError
Source§impl Debug for GreetingDecodeError
impl Debug for GreetingDecodeError
impl Eq for GreetingDecodeError
Source§impl IntoStatic for GreetingDecodeError
impl IntoStatic for GreetingDecodeError
type Static = GreetingDecodeError
fn into_static(self) -> Self::Static
Source§impl PartialEq for GreetingDecodeError
impl PartialEq for GreetingDecodeError
Source§fn eq(&self, other: &GreetingDecodeError) -> bool
fn eq(&self, other: &GreetingDecodeError) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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