pub struct OutputPatternPrepareError {
pub location: ScriptLocation,
pub pattern: String,
pub error: Error,
}Fields§
§location: ScriptLocation§pattern: String§error: ErrorTrait Implementations§
Source§impl Debug for OutputPatternPrepareError
impl Debug for OutputPatternPrepareError
Source§impl Display for OutputPatternPrepareError
impl Display for OutputPatternPrepareError
Source§impl Error for OutputPatternPrepareError
impl Error for OutputPatternPrepareError
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<OutputPatternPrepareError> for ScriptRunError
impl From<OutputPatternPrepareError> for ScriptRunError
Source§fn from(source: OutputPatternPrepareError) -> Self
fn from(source: OutputPatternPrepareError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OutputPatternPrepareError
impl RefUnwindSafe for OutputPatternPrepareError
impl Send for OutputPatternPrepareError
impl Sync for OutputPatternPrepareError
impl Unpin for OutputPatternPrepareError
impl UnwindSafe for OutputPatternPrepareError
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