pub struct TileSerializer {
pub rect: PictureRect,
pub current_descriptor: TileDescriptor,
pub id: TileId,
pub root: TileNode,
pub background_color: Option<ColorF>,
pub invalidation_reason: Option<InvalidationReason>,
}
Expand description
A minimal subset of Tile for debug capturing
Fields§
§rect: PictureRect
§current_descriptor: TileDescriptor
§id: TileId
§root: TileNode
§background_color: Option<ColorF>
§invalidation_reason: Option<InvalidationReason>
Auto Trait Implementations§
impl Freeze for TileSerializer
impl RefUnwindSafe for TileSerializer
impl Send for TileSerializer
impl Sync for TileSerializer
impl Unpin for TileSerializer
impl UnwindSafe for TileSerializer
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