[][src]Struct osm_tile_downloader::Config

pub struct Config<'a> {
    pub bounding_box: BoundingBox,
    pub fetch_rate: u8,
    pub output_folder: &'a Path,
    pub request_retries_amount: u8,
    pub url: &'a str,
    pub timeout: Duration,
    pub zoom_level: u8,
}

Tile fetching configuration.

Fields

bounding_box: BoundingBox

Bounding box in top, right, bottom, left order.

fetch_rate: u8

Maximum number of parallel downloads.

output_folder: &'a Path

The folder to output the data to.

request_retries_amount: u8

How many times to retry a failed HTTP request.

url: &'a str

The URL to download individual tiles from including the replacement specifiers {x}, {y} and {z}.

timeout: Duration

Timeout for fetching a single tile.

Pass the zero duration to disable the timeout.

zoom_level: u8

The zoom level to download to.

Implementations

impl<'_> Config<'_>[src]

pub fn tiles(&self) -> impl Iterator<Item = Tile> + Debug[src]

Creates an iterator iterating over all tiles in the contained bounding box.

Trait Implementations

impl<'a> Clone for Config<'a>[src]

impl<'a> Copy for Config<'a>[src]

impl<'a> Debug for Config<'a>[src]

impl<'a> PartialEq<Config<'a>> for Config<'a>[src]

impl<'a> StructuralPartialEq for Config<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Config<'a>

impl<'a> Send for Config<'a>

impl<'a> Sync for Config<'a>

impl<'a> Unpin for Config<'a>

impl<'a> UnwindSafe for Config<'a>

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,