Struct alloy_sol_types::abi::token::FixedSeqToken

source ·
pub struct FixedSeqToken<T, const N: usize>(pub [T; N]);
Expand description

A Fixed Sequence - T[N]

Tuple Fields§

§0: [T; N]

Implementations§

source§

impl<T, const N: usize> FixedSeqToken<T, N>

source

pub fn into_array(self) -> [T; N]

Take the backing array, consuming the token.

source

pub const fn as_array(&self) -> &[T; N]

Returns a reference to the array.

source

pub const fn as_slice(&self) -> &[T]

Returns a reference to the array as a slice.

Trait Implementations§

source§

impl<T, const N: usize> AsRef<[T; N]> for FixedSeqToken<T, N>

source§

fn as_ref(&self) -> &[T; N]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: Clone, const N: usize> Clone for FixedSeqToken<T, N>

source§

fn clone(&self) -> FixedSeqToken<T, N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, const N: usize> Debug for FixedSeqToken<T, N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, const N: usize> From<[T; N]> for FixedSeqToken<T, N>

source§

fn from(value: [T; N]) -> Self

Converts to this type from the input type.
source§

impl<T: PartialEq, const N: usize> PartialEq for FixedSeqToken<T, N>

source§

fn eq(&self, other: &FixedSeqToken<T, N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'de, T: Token<'de>, const N: usize> Token<'de> for FixedSeqToken<T, N>

source§

const DYNAMIC: bool = T::DYNAMIC

True if the token represents a dynamically-sized type.
source§

fn decode_from(dec: &mut Decoder<'de>) -> Result<Self>

Decode a token from a decoder.
source§

fn head_words(&self) -> usize

Calculate the number of head words.
source§

fn tail_words(&self) -> usize

Calculate the number of tail words.
source§

fn head_append(&self, enc: &mut Encoder)

Append head words to the encoder.
source§

fn tail_append(&self, enc: &mut Encoder)

Append tail words to the encoder.
source§

fn total_words(&self) -> usize

Calculate the total number of head and tail words.
source§

impl<'de, T: Token<'de>, const N: usize> TokenSeq<'de> for FixedSeqToken<T, N>

source§

fn encode_sequence(&self, enc: &mut Encoder)

ABI-encode the token sequence into the encoder.
source§

fn decode_sequence(dec: &mut Decoder<'de>) -> Result<Self>

ABI-decode the token sequence from the encoder.
source§

const IS_TUPLE: bool = false

True for tuples only.
source§

impl<T, const N: usize> TryFrom<Vec<T>> for FixedSeqToken<T, N>

§

type Error = <[T; N] as TryFrom<Vec<T>>>::Error

The type returned in the event of a conversion error.
source§

fn try_from(value: Vec<T>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T: Eq, const N: usize> Eq for FixedSeqToken<T, N>

source§

impl<T, const N: usize> StructuralPartialEq for FixedSeqToken<T, N>

Auto Trait Implementations§

§

impl<T, const N: usize> Freeze for FixedSeqToken<T, N>
where T: Freeze,

§

impl<T, const N: usize> RefUnwindSafe for FixedSeqToken<T, N>
where T: RefUnwindSafe,

§

impl<T, const N: usize> Send for FixedSeqToken<T, N>
where T: Send,

§

impl<T, const N: usize> Sync for FixedSeqToken<T, N>
where T: Sync,

§

impl<T, const N: usize> Unpin for FixedSeqToken<T, N>
where T: Unpin,

§

impl<T, const N: usize> UnwindSafe for FixedSeqToken<T, N>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V