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)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes