pub struct SkillError {
pub message: String,
pub hint: Option<String>,
pub partial_report: Option<SkillReport>,
}Expand description
A skill admin failure with an operator-facing message and optional hint.
Fields§
§message: StringWhat went wrong.
hint: Option<String>Optional remediation hint.
partial_report: Option<SkillReport>Per-target report captured after a multi-target operation failed.
Trait Implementations§
Source§impl Clone for SkillError
impl Clone for SkillError
Source§fn clone(&self) -> SkillError
fn clone(&self) -> SkillError
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 moreAuto Trait Implementations§
impl Freeze for SkillError
impl RefUnwindSafe for SkillError
impl Send for SkillError
impl Sync for SkillError
impl Unpin for SkillError
impl UnsafeUnpin for SkillError
impl UnwindSafe for SkillError
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