pub struct CompositeLayer {
pub map: HeightMap,
pub blend: CompositeBlendMode,
pub weight: f32,
pub mask: Option<HeightMap>,
}Expand description
A single layer in a compositor.
Fields§
§map: HeightMap§blend: CompositeBlendMode§weight: f32§mask: Option<HeightMap>Auto Trait Implementations§
impl Freeze for CompositeLayer
impl RefUnwindSafe for CompositeLayer
impl Send for CompositeLayer
impl Sync for CompositeLayer
impl Unpin for CompositeLayer
impl UnsafeUnpin for CompositeLayer
impl UnwindSafe for CompositeLayer
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