pub struct TileDiffPlan<'a> {
pub params: TileParams,
pub stats: TileDiffStats,
pub dirty_tiles: &'a [bool],
pub tile_counts: &'a [u32],
pub sat: &'a [u32],
}Expand description
Successful tile build with reusable buffers.
Fields§
§params: TileParams§stats: TileDiffStats§dirty_tiles: &'a [bool]§tile_counts: &'a [u32]§sat: &'a [u32]Trait Implementations§
Source§impl<'a> Clone for TileDiffPlan<'a>
impl<'a> Clone for TileDiffPlan<'a>
Source§fn clone(&self) -> TileDiffPlan<'a>
fn clone(&self) -> TileDiffPlan<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for TileDiffPlan<'a>
impl<'a> RefUnwindSafe for TileDiffPlan<'a>
impl<'a> Send for TileDiffPlan<'a>
impl<'a> Sync for TileDiffPlan<'a>
impl<'a> Unpin for TileDiffPlan<'a>
impl<'a> UnsafeUnpin for TileDiffPlan<'a>
impl<'a> UnwindSafe for TileDiffPlan<'a>
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