pub struct PaintLayer {
pub element: HELEMENT,
pub is_foreground: bool,
}
Expand description
A specific UI layer to redraw.
Fields§
§element: HELEMENT
A DOM element (layer) to render.
is_foreground: bool
Whether the element
is the topmost layer or a background one.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PaintLayer
impl RefUnwindSafe for PaintLayer
impl !Send for PaintLayer
impl !Sync for PaintLayer
impl Unpin for PaintLayer
impl UnwindSafe for PaintLayer
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