struct TilePostUpdateContext<'a> {
    local_clip_rect: PictureRect,
    backdrop: Option<BackdropInfo>,
    current_tile_size: DeviceIntSize,
    z_id: ZBufferId,
    underlays: &'a [ExternalSurfaceDescriptor],
}Fields§
§local_clip_rect: PictureRectThe local clip rect (in picture space) of the entire picture cache
backdrop: Option<BackdropInfo>The calculated backdrop information for this cache instance.
current_tile_size: DeviceIntSizeCurrent size in device pixels of tiles for this cache
z_id: ZBufferIdPre-allocated z-id to assign to tiles during post_update.
underlays: &'a [ExternalSurfaceDescriptor]The list of compositor underlays for this picture cache
Auto Trait Implementations§
impl<'a> Freeze for TilePostUpdateContext<'a>
impl<'a> RefUnwindSafe for TilePostUpdateContext<'a>
impl<'a> Send for TilePostUpdateContext<'a>
impl<'a> Sync for TilePostUpdateContext<'a>
impl<'a> Unpin for TilePostUpdateContext<'a>
impl<'a> UnwindSafe for TilePostUpdateContext<'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
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