Skip to main content

ErrorBoundary

Struct ErrorBoundary 

Source
pub struct ErrorBoundary { /* private fields */ }
Expand description

Catches panics (and future framework-level errors) from a child subtree and renders a fallback element in their place.

§Phase 1 note

In Phase 1 the child is already a resolved Element, so render() simply returns the child clone. Panic catching around RosaceComponent::build() calls happens at the framework dispatch level (in rosace-render / rosace-cli), not here. The ErrorBoundary struct and its API are the stable surface; the real panic-catching wiring is added in a later phase.

Implementations§

Source§

impl ErrorBoundary

Source

pub fn new() -> Self

Creates an ErrorBoundary with a default fallback that renders the error message as a text element.

Source

pub fn fallback( self, f: impl Fn(&RosaceError) -> Element + Send + Sync + 'static, ) -> Self

Replaces the fallback renderer.

Source

pub fn child(self, element: impl Into<Element>) -> Self

Sets the child element to render when no error has occurred.

Source

pub fn render(&self) -> Element

Returns the child element.

In Phase 1 this always returns the child as-is. The real panic-catching path wraps RosaceComponent::build() at the framework dispatch level.

Trait Implementations§

Source§

impl Default for ErrorBoundary

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.