pub struct TypeDefTuple<T: Form = MetaForm> {
pub fields: Vec<T::Type>,
}
Expand description
A type to refer to tuple types.
Fields§
§fields: Vec<T::Type>
The types of the tuple fields.
Implementations§
source§impl TypeDefTuple
impl TypeDefTuple
source§impl TypeDefTuple<PortableForm>
impl TypeDefTuple<PortableForm>
sourcepub fn new_portable<I>(type_params: I) -> Self
pub fn new_portable<I>(type_params: I) -> Self
Creates a new custom type definition from the given types.
Trait Implementations§
source§impl<T: Clone + Form> Clone for TypeDefTuple<T>
impl<T: Clone + Form> Clone for TypeDefTuple<T>
source§fn clone(&self) -> TypeDefTuple<T>
fn clone(&self) -> TypeDefTuple<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Form> Decode for TypeDefTuple<T>
impl<T: Form> Decode for TypeDefTuple<T>
source§fn 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.
source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
source§impl<T: Form> Encode for TypeDefTuple<T>
impl<T: Form> Encode for TypeDefTuple<T>
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
source§fn 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.
source§fn using_encoded<__CodecOutputReturn, __CodecUsingEncodedCallback: FnOnce(&[u8]) -> __CodecOutputReturn>(
&self,
f: __CodecUsingEncodedCallback,
) -> __CodecOutputReturn
fn using_encoded<__CodecOutputReturn, __CodecUsingEncodedCallback: FnOnce(&[u8]) -> __CodecOutputReturn>( &self, f: __CodecUsingEncodedCallback, ) -> __CodecOutputReturn
Convert self to a slice and then invoke the given closure with it.
source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
source§impl<F: Form> From<TypeDefTuple<F>> for Type<F>
impl<F: Form> From<TypeDefTuple<F>> for Type<F>
source§fn from(item: TypeDefTuple<F>) -> Self
fn from(item: TypeDefTuple<F>) -> Self
Converts to this type from the input type.
source§impl<F: Form> From<TypeDefTuple<F>> for TypeDef<F>
impl<F: Form> From<TypeDefTuple<F>> for TypeDef<F>
source§fn from(x: TypeDefTuple<F>) -> Self
fn from(x: TypeDefTuple<F>) -> Self
Converts to this type from the input type.
source§impl IntoPortable for TypeDefTuple
impl IntoPortable for TypeDefTuple
source§type Output = TypeDefTuple<PortableForm>
type Output = TypeDefTuple<PortableForm>
The portable version of
Self
.source§fn into_portable(self, registry: &mut Registry) -> Self::Output
fn into_portable(self, registry: &mut Registry) -> Self::Output
Convert
self
to the portable form by using the registry for caching.source§impl<T: Ord + Form> Ord for TypeDefTuple<T>
impl<T: Ord + Form> Ord for TypeDefTuple<T>
source§fn cmp(&self, other: &TypeDefTuple<T>) -> Ordering
fn cmp(&self, other: &TypeDefTuple<T>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<T: PartialOrd + Form> PartialOrd for TypeDefTuple<T>where
T::Type: PartialOrd,
impl<T: PartialOrd + Form> PartialOrd for TypeDefTuple<T>where
T::Type: PartialOrd,
impl<T: Form> EncodeLike for TypeDefTuple<T>
impl<T: Eq + Form> Eq for TypeDefTuple<T>
impl<T: Form> StructuralPartialEq for TypeDefTuple<T>
Auto Trait Implementations§
impl<T> Freeze for TypeDefTuple<T>
impl<T> RefUnwindSafe for TypeDefTuple<T>
impl<T> Send for TypeDefTuple<T>
impl<T> Sync for TypeDefTuple<T>
impl<T> Unpin for TypeDefTuple<T>
impl<T> UnwindSafe for TypeDefTuple<T>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)