[][src]Struct mvt::TileId

pub struct TileId { /* fields omitted */ }

A tile ID identifies a tile on a map grid at a specific zoom level.

It uses XYZ addressing, with X increasing from west to east and Y increasing from north to south. The X and Y values can range from 0 to 2Z-1.

Implementations

impl TileId[src]

pub fn x(&self) -> u32[src]

Get the X value.

pub fn y(&self) -> u32[src]

Get the Y value.

pub fn z(&self) -> u32[src]

Get the Z (zoom) value.

impl TileId[src]

pub fn new(x: u32, y: u32, z: u32) -> Result<Self, Error>[src]

Create a new TildId.

If invalid, returns Error::InvalidTid.

Trait Implementations

impl Clone for TileId[src]

impl Copy for TileId[src]

impl Debug for TileId[src]

impl Display for TileId[src]

Auto Trait Implementations

impl RefUnwindSafe for TileId

impl Send for TileId

impl Sync for TileId

impl Unpin for TileId

impl UnwindSafe for TileId

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> ToString for T where
    T: Display + ?Sized
[src]

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.