pub struct CompositeGroupProps {
pub layout: LayoutStyle,
pub mode: BlendMode,
pub quality: EffectQuality,
}Expand description
Scoped isolated compositing group wrapper for declarative element subtrees (ADR 0247).
This emits a SceneOp::PushCompositeGroup/PopCompositeGroup pair around the subtree during
painting. The group’s computation bounds are the wrapper’s final layout bounds.
Fields§
§layout: LayoutStyle§mode: BlendMode§quality: EffectQualityTrait Implementations§
Source§impl Clone for CompositeGroupProps
impl Clone for CompositeGroupProps
Source§fn clone(&self) -> CompositeGroupProps
fn clone(&self) -> CompositeGroupProps
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 moreSource§impl Debug for CompositeGroupProps
impl Debug for CompositeGroupProps
Source§impl Default for CompositeGroupProps
impl Default for CompositeGroupProps
Source§impl PartialEq for CompositeGroupProps
impl PartialEq for CompositeGroupProps
impl Copy for CompositeGroupProps
impl StructuralPartialEq for CompositeGroupProps
Auto Trait Implementations§
impl Freeze for CompositeGroupProps
impl RefUnwindSafe for CompositeGroupProps
impl Send for CompositeGroupProps
impl Sync for CompositeGroupProps
impl Unpin for CompositeGroupProps
impl UnsafeUnpin for CompositeGroupProps
impl UnwindSafe for CompositeGroupProps
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