pub enum ElementaryTypeName {
Address,
AddressPayable,
Bool,
String,
Bytes,
SignedInteger(Option<u16>),
UnsignedInteger(Option<u16>),
FixedBytes(Option<u8>),
Fixed,
Ufixed,
}
Variants§
Address
AddressPayable
Bool
String
Bytes
SignedInteger(Option<u16>)
UnsignedInteger(Option<u16>)
FixedBytes(Option<u8>)
Fixed
Ufixed
Trait Implementations§
Source§impl Clone for ElementaryTypeName
impl Clone for ElementaryTypeName
Source§fn clone(&self) -> ElementaryTypeName
fn clone(&self) -> ElementaryTypeName
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ElementaryTypeName
impl Debug for ElementaryTypeName
Source§impl PartialEq for ElementaryTypeName
impl PartialEq for ElementaryTypeName
impl StructuralPartialEq for ElementaryTypeName
Auto Trait Implementations§
impl Freeze for ElementaryTypeName
impl RefUnwindSafe for ElementaryTypeName
impl Send for ElementaryTypeName
impl Sync for ElementaryTypeName
impl Unpin for ElementaryTypeName
impl UnwindSafe for ElementaryTypeName
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