pub enum SolidityDataType<'a> {
String(&'a str),
Address(Address),
Bytes(&'a [u8]),
Bool(bool),
Number(U256),
NumberWithShift(U256, TakeLastXBytes),
}Variants§
String(&'a str)
Address(Address)
Bytes(&'a [u8])
Bool(bool)
Number(U256)
NumberWithShift(U256, TakeLastXBytes)
Auto Trait Implementations§
impl<'a> Freeze for SolidityDataType<'a>
impl<'a> RefUnwindSafe for SolidityDataType<'a>
impl<'a> Send for SolidityDataType<'a>
impl<'a> Sync for SolidityDataType<'a>
impl<'a> Unpin for SolidityDataType<'a>
impl<'a> UnwindSafe for SolidityDataType<'a>
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