pub enum VyperErrors {
IoError(Error),
CompilerError(String),
SerializationError(Error),
ConcurrencyError(JoinError),
PipError(String),
DirError(String),
VenvError(String),
BlueprintError(String),
IntParseError(ParseIntError),
StringParsingError,
}Variants§
IoError(Error)
CompilerError(String)
SerializationError(Error)
ConcurrencyError(JoinError)
PipError(String)
DirError(String)
VenvError(String)
BlueprintError(String)
IntParseError(ParseIntError)
StringParsingError
Trait Implementations§
Source§impl Debug for VyperErrors
impl Debug for VyperErrors
Source§impl Display for VyperErrors
impl Display for VyperErrors
Source§impl Error for VyperErrors
impl Error for VyperErrors
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<Error> for VyperErrors
impl From<Error> for VyperErrors
Source§impl From<Error> for VyperErrors
impl From<Error> for VyperErrors
Auto Trait Implementations§
impl Freeze for VyperErrors
impl !RefUnwindSafe for VyperErrors
impl Send for VyperErrors
impl Sync for VyperErrors
impl Unpin for VyperErrors
impl !UnwindSafe for VyperErrors
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