[][src]Enum tmx::map::StaggerIndex

pub enum StaggerIndex {
    Odd,
    Even,
}

For staggered and hexagonal maps, determines whether the “even” or “odd” indexes along the staggered axis are shifted.

Variants

Odd
Even

Trait Implementations

impl Clone for StaggerIndex[src]

impl Copy for StaggerIndex[src]

impl Debug for StaggerIndex[src]

impl<'de> Deserialize<'de> for StaggerIndex[src]

impl Eq for StaggerIndex[src]

impl Hash for StaggerIndex[src]

impl PartialEq<StaggerIndex> for StaggerIndex[src]

impl StructuralEq for StaggerIndex[src]

impl StructuralPartialEq for StaggerIndex[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.