pub enum ParseResponseError<T> {
Failed(CompletionCode),
NotEnoughData,
Parse(T),
}Variants§
Trait Implementations§
Source§impl<T: Clone> Clone for ParseResponseError<T>
impl<T: Clone> Clone for ParseResponseError<T>
Source§fn clone(&self) -> ParseResponseError<T>
fn clone(&self) -> ParseResponseError<T>
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<T: Debug> Debug for ParseResponseError<T>
impl<T: Debug> Debug for ParseResponseError<T>
Source§impl<T> From<T> for ParseResponseError<T>
impl<T> From<T> for ParseResponseError<T>
Source§impl<T: PartialEq> PartialEq for ParseResponseError<T>
impl<T: PartialEq> PartialEq for ParseResponseError<T>
impl<T: Copy> Copy for ParseResponseError<T>
impl<T> StructuralPartialEq for ParseResponseError<T>
Auto Trait Implementations§
impl<T> Freeze for ParseResponseError<T>where
T: Freeze,
impl<T> RefUnwindSafe for ParseResponseError<T>where
T: RefUnwindSafe,
impl<T> Send for ParseResponseError<T>where
T: Send,
impl<T> Sync for ParseResponseError<T>where
T: Sync,
impl<T> Unpin for ParseResponseError<T>where
T: Unpin,
impl<T> UnwindSafe for ParseResponseError<T>where
T: 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