pub enum Type {
Unit,
Bool,
Uint(u8),
B256,
String(u64),
Array(Aggregate),
Union(Aggregate),
Struct(Aggregate),
Contract,
ContractCaller(AbiInstance),
}
Variants
Unit
Bool
Uint(u8)
B256
String(u64)
Array(Aggregate)
Union(Aggregate)
Struct(Aggregate)
Contract
ContractCaller(AbiInstance)
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Type
impl UnwindSafe for Type
Blanket Implementations
Mutably borrows from an owned value. Read more