pub enum ParsedResponse {
Error(String),
Hit,
Incomplete,
Invalid,
Miss,
Ok,
Unknown,
Version(String),
}Variants§
Trait Implementations§
Source§impl Debug for ParsedResponse
impl Debug for ParsedResponse
Source§impl PartialEq for ParsedResponse
impl PartialEq for ParsedResponse
impl StructuralPartialEq for ParsedResponse
Auto Trait Implementations§
impl Freeze for ParsedResponse
impl RefUnwindSafe for ParsedResponse
impl Send for ParsedResponse
impl Sync for ParsedResponse
impl Unpin for ParsedResponse
impl UnwindSafe for ParsedResponse
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