pub struct SyntaxError(/* private fields */);
Expand description
Error that indicates a given Regexp
pattern could not be parsed when given
as a /.../
literal in Ruby source code.
This error is typically generated at parse-time.
This error corresponds to the Ruby SyntaxError
Exception class.
§Examples
let err = SyntaxError::new();
assert_eq!(err.message(), "SyntaxError");
let err = SyntaxError::with_message("premature end of char-class");
assert_eq!(err.message(), "premature end of char-class");
Implementations§
Source§impl SyntaxError
impl SyntaxError
Sourcepub const fn new() -> Self
pub const fn new() -> Self
Construct a new, default syntax error.
§Examples
const ERR: SyntaxError = SyntaxError::new();
assert_eq!(ERR.message(), "SyntaxError");
Sourcepub const fn with_message(message: &'static str) -> Self
pub const fn with_message(message: &'static str) -> Self
Construct a new syntax error with a message.
§Examples
const ERR: SyntaxError = SyntaxError::with_message("premature end of char-class");
assert_eq!(ERR.message(), "premature end of char-class");
Sourcepub fn message(&self) -> &str
pub fn message(&self) -> &str
Retrieve the exception message associated with this syntax error.
§Examples
let err = SyntaxError::new();
assert_eq!(err.message(), "SyntaxError");
let err = SyntaxError::with_message("premature end of char-class");
assert_eq!(err.message(), "premature end of char-class");
Trait Implementations§
Source§impl Clone for SyntaxError
impl Clone for SyntaxError
Source§fn clone(&self) -> SyntaxError
fn clone(&self) -> SyntaxError
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 SyntaxError
impl Debug for SyntaxError
Source§impl Display for SyntaxError
impl Display for SyntaxError
Source§impl Error for SyntaxError
impl Error for SyntaxError
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 From<&'static str> for SyntaxError
impl From<&'static str> for SyntaxError
Source§impl From<String> for SyntaxError
impl From<String> for SyntaxError
Source§impl From<SyntaxError> for Error
impl From<SyntaxError> for Error
Source§fn from(err: SyntaxError) -> Self
fn from(err: SyntaxError) -> Self
Converts to this type from the input type.
Source§impl Hash for SyntaxError
impl Hash for SyntaxError
Source§impl Ord for SyntaxError
impl Ord for SyntaxError
Source§fn cmp(&self, other: &SyntaxError) -> Ordering
fn cmp(&self, other: &SyntaxError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SyntaxError
impl PartialEq for SyntaxError
Source§impl PartialOrd for SyntaxError
impl PartialOrd for SyntaxError
impl Eq for SyntaxError
impl StructuralPartialEq for SyntaxError
Auto Trait Implementations§
impl Freeze for SyntaxError
impl RefUnwindSafe for SyntaxError
impl Send for SyntaxError
impl Sync for SyntaxError
impl Unpin for SyntaxError
impl UnwindSafe for SyntaxError
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