Enum alloy_sol_type_parser::Error
source · pub enum Error {
InvalidTypeString(String),
InvalidSize(String),
}Expand description
A type string parsing error.
Variants§
InvalidTypeString(String)
Invalid type string, extra chars, or invalid structure.
InvalidSize(String)
Invalid size for a primitive type (intX, uintX, or bytesX).
Implementations§
source§impl Error
impl Error
sourcepub fn invalid_type_string(ty: impl ToString) -> Self
pub fn invalid_type_string(ty: impl ToString) -> Self
Instantiate an invalid type string error. Invalid type string errors are for type strings that are not valid type strings. E.g. “uint256))))[”.
sourcepub fn invalid_size(ty: impl ToString) -> Self
pub fn invalid_size(ty: impl ToString) -> Self
Instantiate an invalid size error. Invalid size errors are for valid
primitive types with invalid sizes. E.g. "uint7" or "bytes1337" or
"string[aaaaaa]".
Trait Implementations§
source§impl Error for Error
Available on crate feature std only.
impl Error for Error
Available on crate feature
std only.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 PartialEq<Error> for Error
impl PartialEq<Error> for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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