Struct alloy_sol_type_parser::Error
source · pub struct Error(/* private fields */);
Expand description
Parser error.
Implementations§
source§impl Error
impl Error
sourcepub fn invalid_type_string(ty: impl Display) -> Self
pub fn invalid_type_string(ty: impl Display) -> 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_identifier_string(identifier: impl Display) -> Self
pub fn invalid_identifier_string(identifier: impl Display) -> Self
Instantiate an invalid identifier string error. Invalid identifier string errors are for identifier strings that do not follow the format described in https://docs.soliditylang.org/en/latest/grammar.html#a4.SolidityLexer.Identifier.
sourcepub fn invalid_size(ty: impl Display) -> Self
pub fn invalid_size(ty: impl Display) -> 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
impl Error for Error
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 for Error
impl PartialEq for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)