pub struct BackdropLayer {
pub rect: Rect,
pub clip: Option<Rect>,
pub effect: RenderEffect,
pub z_index: usize,
}Expand description
A backdrop effect applied to already-rendered content behind a node.
Fields§
§rect: Rect§clip: Option<Rect>§effect: RenderEffect§z_index: usizeZ-index at which this backdrop effect should be applied.
Trait Implementations§
Source§impl Clone for BackdropLayer
impl Clone for BackdropLayer
Source§fn clone(&self) -> BackdropLayer
fn clone(&self) -> BackdropLayer
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 Freeze for BackdropLayer
impl RefUnwindSafe for BackdropLayer
impl Send for BackdropLayer
impl Sync for BackdropLayer
impl Unpin for BackdropLayer
impl UnsafeUnpin for BackdropLayer
impl UnwindSafe for BackdropLayer
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