pub struct ReloadOutcome {
pub summary: String,
pub had_warnings: bool,
}Expand description
The outcome of a reload: a human-readable status line for the transcript (counts of what reloaded), and whether any load diagnostics appeared.
Fields§
§summary: StringOne-line summary for the transcript note (e.g. “Reloaded 2 plugin(s), 5 skill(s), 1 prompt(s).”).
had_warnings: boolTrue iff at least one extension load warning fired (ABI mismatch / skip).
Auto Trait Implementations§
impl Freeze for ReloadOutcome
impl RefUnwindSafe for ReloadOutcome
impl Send for ReloadOutcome
impl Sync for ReloadOutcome
impl Unpin for ReloadOutcome
impl UnsafeUnpin for ReloadOutcome
impl UnwindSafe for ReloadOutcome
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