pub struct ClipPath {
pub(crate) id: NonEmptyString,
pub(crate) transform: Transform,
pub(crate) clip_path: Option<Arc<ClipPath>>,
pub(crate) root: Group,
}
Expand description
A clip-path element.
clipPath
element in SVG.
Fields§
§id: NonEmptyString
§transform: Transform
§clip_path: Option<Arc<ClipPath>>
§root: Group
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClipPath
impl !RefUnwindSafe for ClipPath
impl Send for ClipPath
impl Sync for ClipPath
impl Unpin for ClipPath
impl !UnwindSafe for ClipPath
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