[][src]Struct ssz::Series

pub struct Series(pub Vec<SeriesItem>);

Represents a ssz series. Items in it can either be fixed-sized or variable-sized.

Methods

impl Series[src]

Important traits for Vec<u8>
pub fn encode(&self) -> Vec<u8>[src]

Encode the current series into raw bytes.

pub fn decode_vector(
    value: &[u8],
    typs: &[Option<usize>]
) -> Result<Self, Error>
[src]

Decode raw bytes as a ssz vector, with given types. The length of types must equal to the length of values in the vector.

pub fn decode_list(value: &[u8], typ: Option<usize>) -> Result<Self, Error>[src]

Decode raw bytes as a ssz list, with the given type.

Trait Implementations

impl Clone for Series[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Series[src]

impl PartialEq<Series> for Series[src]

impl Eq for Series[src]

impl Debug for Series[src]

Auto Trait Implementations

impl Sync for Series

impl Send for Series

impl Unpin for Series

impl RefUnwindSafe for Series

impl UnwindSafe for Series

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self