Enum webrender::tile_cache::TileDebugInfo
source · pub enum TileDebugInfo {
Occluded,
Culled,
Valid,
Dirty(DirtyTileDebugInfo),
}
Expand description
Debug information about the state of a tile
Variants§
Occluded
Tile was occluded by a tile in front of it
Culled
Tile was culled (not visible in current display port)
Valid
Tile was valid (no rasterization was done) and visible
Dirty(DirtyTileDebugInfo)
Tile was dirty, and was updated
Implementations§
source§impl TileDebugInfo
impl TileDebugInfo
Trait Implementations§
source§impl Debug for TileDebugInfo
impl Debug for TileDebugInfo
source§impl PartialEq for TileDebugInfo
impl PartialEq for TileDebugInfo
source§fn eq(&self, other: &TileDebugInfo) -> bool
fn eq(&self, other: &TileDebugInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TileDebugInfo
impl Serialize for TileDebugInfo
impl StructuralPartialEq for TileDebugInfo
Auto Trait Implementations§
impl Freeze for TileDebugInfo
impl RefUnwindSafe for TileDebugInfo
impl Send for TileDebugInfo
impl Sync for TileDebugInfo
impl Unpin for TileDebugInfo
impl UnwindSafe for TileDebugInfo
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more