pub struct VisibleTileSet {
pub tiles: Vec<VisibleTile>,
}Expand description
The complete set of tiles that should be rendered for the current frame.
Fields§
§tiles: Vec<VisibleTile>Tiles that should be displayed (loaded or fallback).
Implementations§
Trait Implementations§
Source§impl Debug for VisibleTileSet
impl Debug for VisibleTileSet
Source§impl Default for VisibleTileSet
impl Default for VisibleTileSet
Source§fn default() -> VisibleTileSet
fn default() -> VisibleTileSet
Returns the “default value” for a type. Read more
Source§impl<'a> IntoIterator for &'a VisibleTileSet
impl<'a> IntoIterator for &'a VisibleTileSet
Auto Trait Implementations§
impl Freeze for VisibleTileSet
impl RefUnwindSafe for VisibleTileSet
impl Send for VisibleTileSet
impl Sync for VisibleTileSet
impl Unpin for VisibleTileSet
impl UnsafeUnpin for VisibleTileSet
impl UnwindSafe for VisibleTileSet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more