pub enum LayoutApplyError {
Layout(LayoutError),
Dispatch(DispatchError),
}Expand description
Errors from planning or dispatching a layout engine.
Variants§
Layout(LayoutError)
Dispatch(DispatchError)
Trait Implementations§
Source§impl Debug for LayoutApplyError
impl Debug for LayoutApplyError
Source§impl Display for LayoutApplyError
impl Display for LayoutApplyError
Source§impl Error for LayoutApplyError
impl Error for LayoutApplyError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<DispatchError> for LayoutApplyError
impl From<DispatchError> for LayoutApplyError
Source§fn from(source: DispatchError) -> Self
fn from(source: DispatchError) -> Self
Converts to this type from the input type.
Source§impl From<LayoutApplyError> for DugongLayoutApplyError
impl From<LayoutApplyError> for DugongLayoutApplyError
Source§fn from(error: LayoutApplyError) -> Self
fn from(error: LayoutApplyError) -> Self
Converts to this type from the input type.
Source§impl From<LayoutError> for LayoutApplyError
impl From<LayoutError> for LayoutApplyError
Source§fn from(source: LayoutError) -> Self
fn from(source: LayoutError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LayoutApplyError
impl RefUnwindSafe for LayoutApplyError
impl Send for LayoutApplyError
impl Sync for LayoutApplyError
impl Unpin for LayoutApplyError
impl UnsafeUnpin for LayoutApplyError
impl UnwindSafe for LayoutApplyError
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