Enum naga_oil::redirect::RedirectError
source · pub enum RedirectError {
FunctionNotFound(String),
ArgumentMismatch(String, String),
ReturnTypeMismatch(String, String),
CircularReference(String),
}
Variants§
FunctionNotFound(String)
ArgumentMismatch(String, String)
ReturnTypeMismatch(String, String)
CircularReference(String)
Trait Implementations§
source§impl Debug for RedirectError
impl Debug for RedirectError
source§impl Display for RedirectError
impl Display for RedirectError
source§impl Error for RedirectError
impl Error for RedirectError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<RedirectError> for ComposerErrorInner
impl From<RedirectError> for ComposerErrorInner
source§fn from(source: RedirectError) -> Self
fn from(source: RedirectError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RedirectError
impl RefUnwindSafe for RedirectError
impl Send for RedirectError
impl Sync for RedirectError
impl Unpin for RedirectError
impl UnwindSafe for RedirectError
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