pub struct Errors(_);
Expand description
A struct to hold all the possible errors that could be provided by child Views
Implementations§
source§impl Errors
impl Errors
sourcepub fn insert<E>(&mut self, key: ErrorKey, error: E)where
E: Error + Send + Sync + 'static,
pub fn insert<E>(&mut self, key: ErrorKey, error: E)where E: Error + Send + Sync + 'static,
Add an error to Errors that will be processed by <ErrorBoundary/>
sourcepub fn insert_with_default_key<E>(&mut self, error: E)where
E: Error + Send + Sync + 'static,
pub fn insert_with_default_key<E>(&mut self, error: E)where E: Error + Send + Sync + 'static,
Add an error with the default key for errors outside the reactive system
Trait Implementations§
source§impl IntoIterator for Errors
impl IntoIterator for Errors
Auto Trait Implementations§
impl !RefUnwindSafe for Errors
impl Send for Errors
impl Sync for Errors
impl Unpin for Errors
impl !UnwindSafe for Errors
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