pub enum Type {
}
Expand description
Represents all different scilla types.
Variants§
Int32
Int64
Int128
Int256
Uint32
Uint64
Uint128
Uint256
String
BNum
Map(Box<Type>, Box<Type>)
ByStr
ByStrX(usize)
ByStr20
ByStr20With
See https://scilla.readthedocs.io/en/latest/scilla-in-depth.html#addresses-1
Bool
Option(Box<Type>)
Pair(Box<Type>, Box<Type>)
List(Box<Type>)
Other(String)
Trait Implementations§
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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