pub struct GroupElement {
pub transform: Transform,
pub clip: Option<Path>,
pub opacity: f64,
pub effects: Vec<Effect>,
pub children: Vec<PositionedElement>,
}Expand description
A group of positioned children in one local coordinate system.
Fields§
§transform: TransformMaps child-local coordinates into the parent coordinate system.
clip: Option<Path>§opacity: f64§effects: Vec<Effect>§children: Vec<PositionedElement>Trait Implementations§
Source§impl Clone for GroupElement
impl Clone for GroupElement
Source§fn clone(&self) -> GroupElement
fn clone(&self) -> GroupElement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupElement
impl Debug for GroupElement
Source§impl PartialEq for GroupElement
impl PartialEq for GroupElement
impl StructuralPartialEq for GroupElement
Auto Trait Implementations§
impl Freeze for GroupElement
impl RefUnwindSafe for GroupElement
impl Send for GroupElement
impl Sync for GroupElement
impl Unpin for GroupElement
impl UnsafeUnpin for GroupElement
impl UnwindSafe for GroupElement
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