pub struct MessageParseError {
pub message: &'static str,
pub kind: ErrorKind,
pub error: Box<Error<Rule>>,
}
Expand description
An error that occurs when parsing a message within a specific line. Contains context pointing at that specific error.
Fields§
§message: &'static str
§kind: ErrorKind
§error: Box<Error<Rule>>
Implementations§
Source§impl MessageParseError
impl MessageParseError
pub fn syntax( message: &'static str, span: Span<'_>, description: impl ToString, ) -> Self
pub fn invalid( message: &'static str, span: Span<'_>, description: impl ToString, ) -> Self
pub fn lookup( message: &'static str, missing: MissingReference, span: Span<'_>, description: impl ToString, ) -> Self
Trait Implementations§
Source§impl Clone for MessageParseError
impl Clone for MessageParseError
Source§fn clone(&self) -> MessageParseError
fn clone(&self) -> MessageParseError
Returns a copy 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 Debug for MessageParseError
impl Debug for MessageParseError
Source§impl Display for MessageParseError
impl Display for MessageParseError
Source§impl Error for MessageParseError
impl Error for MessageParseError
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 From<MessageParseError> for ExtensionParseError
impl From<MessageParseError> for ExtensionParseError
Source§fn from(source: MessageParseError) -> Self
fn from(source: MessageParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MessageParseError
impl RefUnwindSafe for MessageParseError
impl Send for MessageParseError
impl Sync for MessageParseError
impl Unpin for MessageParseError
impl UnwindSafe for MessageParseError
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