Struct trk_io::ArraySequence [] [src]

pub struct ArraySequence<T> {
    pub lengths: Vec<usize>,
    pub offsets: Vec<usize>,
    pub data: Vec<T>,
}

Fields

Methods

impl<T> ArraySequence<T>
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<T: Clone> Clone for ArraySequence<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for ArraySequence<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<'a, T> IntoIterator for &'a ArraySequence<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<T> Index<usize> for ArraySequence<T>
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.