pub enum EvalWarning {
UnknownNotifyMethod {
method: String,
},
VacationNoSender,
}Expand description
A non-fatal observation made during evaluate_plan. Evaluation never
fails: misconfigured or exotic actions are reported as warnings while
the rest of the plan still executes.
Variants§
UnknownNotifyMethod
A notify method URI uses a scheme
outside the recognized set
(KNOWN_NOTIFY_SCHEMES). The
notification outcome is still produced — the host decides whether to
attempt delivery.
VacationNoSender
A vacation reply could not be
routed: neither envelope sender nor header From yielded a usable
address. The reply is omitted from the plan.
Trait Implementations§
Source§impl Clone for EvalWarning
impl Clone for EvalWarning
Source§fn clone(&self) -> EvalWarning
fn clone(&self) -> EvalWarning
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EvalWarning
impl Debug for EvalWarning
Source§impl Display for EvalWarning
impl Display for EvalWarning
impl Eq for EvalWarning
Source§impl Error for EvalWarning
impl Error for EvalWarning
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 PartialEq for EvalWarning
impl PartialEq for EvalWarning
impl StructuralPartialEq for EvalWarning
Auto Trait Implementations§
impl Freeze for EvalWarning
impl RefUnwindSafe for EvalWarning
impl Send for EvalWarning
impl Sync for EvalWarning
impl Unpin for EvalWarning
impl UnsafeUnpin for EvalWarning
impl UnwindSafe for EvalWarning
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