pub struct AppBootFailed {
pub reason: &'static str,
}Expand description
Emitted when app boot fails after plugin validation succeeds.
reason is a stable identifier from a closed set of &'static str
values produced by the runtime: "component_registry",
"missing_window", "missing_document", "missing_pp_app_root".
Fields§
§reason: &'static strTrait Implementations§
Source§impl Clone for AppBootFailed
impl Clone for AppBootFailed
Source§fn clone(&self) -> AppBootFailed
fn clone(&self) -> AppBootFailed
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 moreimpl Copy for AppBootFailed
Auto Trait Implementations§
impl Freeze for AppBootFailed
impl RefUnwindSafe for AppBootFailed
impl Send for AppBootFailed
impl Sync for AppBootFailed
impl Unpin for AppBootFailed
impl UnsafeUnpin for AppBootFailed
impl UnwindSafe for AppBootFailed
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