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
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)>
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()
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)