pub enum ParseError<'input> {
Unsupported(&'input [u8]),
}Expand description
The error type for failed parsing of [MsgType]
Variants§
Unsupported(&'input [u8])
Provided byte slice contains data that is not a valid or supported FIX version.
Trait Implementations§
Source§impl<'input> Clone for ParseError<'input>
impl<'input> Clone for ParseError<'input>
Source§fn clone(&self) -> ParseError<'input>
fn clone(&self) -> ParseError<'input>
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<'input> Debug for ParseError<'input>
impl<'input> Debug for ParseError<'input>
Source§impl<'input> Display for ParseError<'input>
impl<'input> Display for ParseError<'input>
Source§impl<'input> Error for ParseError<'input>
impl<'input> Error for ParseError<'input>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<'input> PartialEq for ParseError<'input>
impl<'input> PartialEq for ParseError<'input>
impl<'input> StructuralPartialEq for ParseError<'input>
Auto Trait Implementations§
impl<'input> Freeze for ParseError<'input>
impl<'input> RefUnwindSafe for ParseError<'input>
impl<'input> Send for ParseError<'input>
impl<'input> Sync for ParseError<'input>
impl<'input> Unpin for ParseError<'input>
impl<'input> UnwindSafe for ParseError<'input>
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