pub enum ComposeError {
    Type(Handle<Type>),
    ComponentCount {
        given: u32,
        expected: u32,
    },
    ComponentType {
        index: u32,
    },
}Variants§
Trait Implementations§
Source§impl Clone for ComposeError
 
impl Clone for ComposeError
Source§fn clone(&self) -> ComposeError
 
fn clone(&self) -> ComposeError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for ComposeError
 
impl Debug for ComposeError
Source§impl Display for ComposeError
 
impl Display for ComposeError
Source§impl Error for ComposeError
 
impl Error for ComposeError
1.30.0 · 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<ComposeError> for ConstExpressionError
 
impl From<ComposeError> for ConstExpressionError
Source§fn from(source: ComposeError) -> Self
 
fn from(source: ComposeError) -> Self
Converts to this type from the input type.
Source§impl From<ComposeError> for ExpressionError
 
impl From<ComposeError> for ExpressionError
Source§fn from(source: ComposeError) -> Self
 
fn from(source: ComposeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ComposeError
impl RefUnwindSafe for ComposeError
impl Send for ComposeError
impl Sync for ComposeError
impl Unpin for ComposeError
impl UnwindSafe for ComposeError
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