pub enum MeyerholdError {
InvalidJson(String),
MissingContent,
Regex(Error),
SearchNotFound(String),
}Expand description
Errors that can occur when working with Playwright MCP snapshots.
Variants§
InvalidJson(String)
JSON parsing or structure error
MissingContent
Missing expected content in snapshot
Regex(Error)
Invalid regex pattern
SearchNotFound(String)
Search pattern not found
Trait Implementations§
Source§impl Debug for MeyerholdError
impl Debug for MeyerholdError
Source§impl Display for MeyerholdError
impl Display for MeyerholdError
Source§impl Error for MeyerholdError
impl Error for MeyerholdError
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()
Auto Trait Implementations§
impl Freeze for MeyerholdError
impl RefUnwindSafe for MeyerholdError
impl Send for MeyerholdError
impl Sync for MeyerholdError
impl Unpin for MeyerholdError
impl UnwindSafe for MeyerholdError
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