pub struct PythonErrorPattern {
pub error_type: String,
pub message_pattern: Option<String>,
pub context: Option<ErrorContext>,
}Fields§
§error_type: String§message_pattern: Option<String>§context: Option<ErrorContext>Trait Implementations§
Source§impl Clone for PythonErrorPattern
impl Clone for PythonErrorPattern
Source§fn clone(&self) -> PythonErrorPattern
fn clone(&self) -> PythonErrorPattern
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 Debug for PythonErrorPattern
impl Debug for PythonErrorPattern
Source§impl Display for PythonErrorPattern
impl Display for PythonErrorPattern
Source§impl Hash for PythonErrorPattern
impl Hash for PythonErrorPattern
Source§impl PartialEq for PythonErrorPattern
impl PartialEq for PythonErrorPattern
impl Eq for PythonErrorPattern
impl StructuralPartialEq for PythonErrorPattern
Auto Trait Implementations§
impl Freeze for PythonErrorPattern
impl RefUnwindSafe for PythonErrorPattern
impl Send for PythonErrorPattern
impl Sync for PythonErrorPattern
impl Unpin for PythonErrorPattern
impl UnwindSafe for PythonErrorPattern
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