Enum dioxus_html::prelude::EvalError
source · pub enum EvalError {
Finished,
InvalidJs(String),
Communication(String),
}
Expand description
Represents an error when evaluating JavaScript
Variants§
Finished
The provided JavaScript has already been ran.
InvalidJs(String)
The provided JavaScript is not valid and can’t be ran.
Communication(String)
Represents an error communicating between JavaScript and Rust.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for EvalError
impl Send for EvalError
impl Sync for EvalError
impl Unpin for EvalError
impl UnwindSafe for EvalError
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