Struct protocol::types::array::Array [] [src]

pub struct Array<S: Integer, T: Type> {
    pub elements: Vec<T>,
    // some fields omitted
}

An array type with a custom size prefix type.

Fields

Methods

impl<S: Integer, T: Type> Array<S, T>
[src]

Trait Implementations

impl<S: Clone + Integer, T: Clone + Type> Clone for Array<S, T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<S: Debug + Integer, T: Debug + Type> Debug for Array<S, T>
[src]

Formats the value using the given formatter.

impl<S: Integer, T: Type> Type for Array<S, T>
[src]

Reads a type for a stream.

Writes a type to a stream.