pub enum ResponceParseError {
TooShort,
InvalidPart,
ParseIntError(ParseIntError),
}
Expand description
An error if the responce from gitstatusd couldn’t be parsed
Variants§
TooShort
Not Enought Parts were recieved
InvalidPart
A part was sent, but we cant parse it.
ParseIntError(ParseIntError)
Trait Implementations§
Source§impl Debug for ResponceParseError
impl Debug for ResponceParseError
Source§impl From<ParseIntError> for ResponceParseError
impl From<ParseIntError> for ResponceParseError
Source§fn from(e: ParseIntError) -> Self
fn from(e: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResponceParseError
impl PartialEq for ResponceParseError
impl StructuralPartialEq for ResponceParseError
Auto Trait Implementations§
impl Freeze for ResponceParseError
impl RefUnwindSafe for ResponceParseError
impl Send for ResponceParseError
impl Sync for ResponceParseError
impl Unpin for ResponceParseError
impl UnwindSafe for ResponceParseError
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