Struct protocol::DynArray [] [src]

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

An dynamic array type with a custom size prefix type.

Fields

Methods

impl<S: Integer, T: Parcel> DynArray<S, T>
[src]

[src]

Trait Implementations

impl<S: Clone + Integer, T: Clone + Parcel> Clone for DynArray<S, T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<S: Debug + Integer, T: Debug + Parcel> Debug for DynArray<S, T>
[src]

[src]

Formats the value using the given formatter.

impl<S: PartialEq + Integer, T: PartialEq + Parcel> PartialEq for DynArray<S, T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<S: Integer, T: Parcel> Parcel for DynArray<S, T>
[src]

[src]

Reads a value from a stream.

[src]

Writes a value to a stream.

[src]

[src]