Trait TileChildren1

Source
pub trait TileChildren1:
    Eq
    + Hash
    + Copy
    + TileLike {
    // Required method
    fn children1(&self) -> [Self; 4];
}

Required Methods§

Source

fn children1(&self) -> [Self; 4]

Returns direct children in Z order: 1) top-left 2) top-right 3) bottom-left 4) bottom-right

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§