pub enum DugongLayoutApplyError {
Layout(LayoutError),
Dispatch(DispatchError),
}Expand description
Errors from planning or dispatching a dugong layout.
Variants§
Layout(LayoutError)
Dispatch(DispatchError)
Trait Implementations§
Source§impl Debug for DugongLayoutApplyError
impl Debug for DugongLayoutApplyError
Source§impl Display for DugongLayoutApplyError
impl Display for DugongLayoutApplyError
Source§impl Error for DugongLayoutApplyError
impl Error for DugongLayoutApplyError
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 DugongLayoutApplyError
impl From<DispatchError> for DugongLayoutApplyError
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 DugongLayoutApplyError
impl From<LayoutError> for DugongLayoutApplyError
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 DugongLayoutApplyError
impl RefUnwindSafe for DugongLayoutApplyError
impl Send for DugongLayoutApplyError
impl Sync for DugongLayoutApplyError
impl Unpin for DugongLayoutApplyError
impl UnsafeUnpin for DugongLayoutApplyError
impl UnwindSafe for DugongLayoutApplyError
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