ElementChunk

Type Alias ElementChunk 

Source
pub type ElementChunk = Chunk<Box<[Element]>>;
Expand description

Chunk of OSM Elements.

Aliased Type§

pub struct ElementChunk {
    pub index: usize,
    pub content: Box<[Element]>,
}

Fields§

§index: usize§content: Box<[Element]>

Trait Implementations§

Source§

impl IntoIterator for ElementChunk

Source§

type Item = Element

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<Element>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more