Enum scale_info::TypeDefPrimitive
source · [−]pub enum TypeDefPrimitive {
Show 15 variants
Bool,
Char,
Str,
U8,
U16,
U32,
U64,
U128,
U256,
I8,
I16,
I32,
I64,
I128,
I256,
}
Expand description
Variants
Bool
bool
type
Char
char
type
Str
str
type
U8
u8
U16
u16
U32
u32
U64
u64
U128
u128
U256
256 bits unsigned int (no rust equivalent)
I8
i8
I16
i16
I32
i32
I64
i64
I128
i128
I256
256 bits signed int (no rust equivalent)
Trait Implementations
sourceimpl Clone for TypeDefPrimitive
impl Clone for TypeDefPrimitive
sourcefn clone(&self) -> TypeDefPrimitive
fn clone(&self) -> TypeDefPrimitive
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TypeDefPrimitive
impl Debug for TypeDefPrimitive
sourceimpl Decode for TypeDefPrimitive
impl Decode for TypeDefPrimitive
sourcefn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
Attempt to deserialise the value from input.
sourcefn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
Attempt to skip the encoded value from input. Read more
sourcefn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
sourceimpl Encode for TypeDefPrimitive
impl Encode for TypeDefPrimitive
sourcefn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
Convert self to a slice and append it to the destination.
sourcefn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
sourcefn encode(&self) -> Vec<u8, Global>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
A: Allocator,
fn encode(&self) -> Vec<u8, Global>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
A: Allocator,
A: Allocator,
Convert self to an owned vector.
sourcefn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
Convert self to a slice and then invoke the given closure with it.
sourcefn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
sourceimpl From<TypeDefPrimitive> for Type
impl From<TypeDefPrimitive> for Type
sourcefn from(item: TypeDefPrimitive) -> Self
fn from(item: TypeDefPrimitive) -> Self
Converts to this type from the input type.
sourceimpl<T: Form> From<TypeDefPrimitive> for TypeDef<T>
impl<T: Form> From<TypeDefPrimitive> for TypeDef<T>
sourcefn from(original: TypeDefPrimitive) -> TypeDef<T>
fn from(original: TypeDefPrimitive) -> TypeDef<T>
Converts to this type from the input type.
sourceimpl Ord for TypeDefPrimitive
impl Ord for TypeDefPrimitive
sourcefn cmp(&self, other: &TypeDefPrimitive) -> Ordering
fn cmp(&self, other: &TypeDefPrimitive) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<TypeDefPrimitive> for TypeDefPrimitive
impl PartialEq<TypeDefPrimitive> for TypeDefPrimitive
sourcefn eq(&self, other: &TypeDefPrimitive) -> bool
fn eq(&self, other: &TypeDefPrimitive) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl PartialOrd<TypeDefPrimitive> for TypeDefPrimitive
impl PartialOrd<TypeDefPrimitive> for TypeDefPrimitive
sourcefn partial_cmp(&self, other: &TypeDefPrimitive) -> Option<Ordering>
fn partial_cmp(&self, other: &TypeDefPrimitive) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl EncodeLike<TypeDefPrimitive> for TypeDefPrimitive
impl Eq for TypeDefPrimitive
impl StructuralEq for TypeDefPrimitive
impl StructuralPartialEq for TypeDefPrimitive
Auto Trait Implementations
impl RefUnwindSafe for TypeDefPrimitive
impl Send for TypeDefPrimitive
impl Sync for TypeDefPrimitive
impl Unpin for TypeDefPrimitive
impl UnwindSafe for TypeDefPrimitive
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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