1pub enum ParseError<E> { 2 /// A serial error occurred, wraps the underlying error. 3 SerialErr(E), 4 /// Lidar CRC check failed. 5 CrcFail, 6}