Enum fuels_core::ParamType
source · [−]pub enum ParamType {
U8,
U16,
U32,
U64,
Bool,
Byte,
B256,
Array(Box<ParamType>, usize),
String(usize),
Struct(Vec<ParamType>),
Enum(Vec<ParamType>),
Tuple(Vec<ParamType>),
}Variants
U8
U16
U32
U64
Bool
Byte
B256
Array(Box<ParamType>, usize)
String(usize)
Struct(Vec<ParamType>)
Enum(Vec<ParamType>)
Tuple(Vec<ParamType>)
Implementations
sourceimpl ParamType
impl ParamType
pub fn bigger_than_word(&self) -> bool
Trait Implementations
impl Eq for ParamType
impl StructuralEq for ParamType
impl StructuralPartialEq for ParamType
Auto Trait Implementations
impl RefUnwindSafe for ParamType
impl Send for ParamType
impl Sync for ParamType
impl Unpin for ParamType
impl UnwindSafe for ParamType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more