Enum quickjs_rusty::errors::ValueError  
source · pub enum ValueError {
    InvalidString(Utf8Error),
    StringWithZeroBytes(NulError),
    Internal(String),
    BigIntOverflow,
    UnexpectedType,
    // some variants omitted
}Expand description
Error during value conversion.
Variants§
InvalidString(Utf8Error)
Invalid non-utf8 string.
StringWithZeroBytes(NulError)
Encountered string with \0 bytes.
Internal(String)
Internal error.
BigIntOverflow
UnexpectedType
Received an unexpected type that could not be converted.
Trait Implementations§
source§impl Debug for ValueError
 
impl Debug for ValueError
source§impl Display for ValueError
 
impl Display for ValueError
source§impl Error for ValueError
 
impl Error for ValueError
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<Infallible> for ValueError
 
impl From<Infallible> for ValueError
source§fn from(_: Infallible) -> Self
 
fn from(_: Infallible) -> Self
Converts to this type from the input type.
source§impl From<ValueError> for Error
 
impl From<ValueError> for Error
source§fn from(source: ValueError) -> Self
 
fn from(source: ValueError) -> Self
Converts to this type from the input type.
source§impl From<ValueError> for ExecutionError
 
impl From<ValueError> for ExecutionError
source§fn from(v: ValueError) -> Self
 
fn from(v: ValueError) -> Self
Converts to this type from the input type.
source§impl PartialEq for ValueError
 
impl PartialEq for ValueError
source§fn eq(&self, other: &ValueError) -> bool
 
fn eq(&self, other: &ValueError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for ValueError
impl StructuralPartialEq for ValueError
Auto Trait Implementations§
impl Freeze for ValueError
impl RefUnwindSafe for ValueError
impl Send for ValueError
impl Sync for ValueError
impl Unpin for ValueError
impl UnwindSafe for ValueError
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