[−][src]Struct usvg::Group
A group container.
The preprocessor will remove all groups that don't impact rendering. Those that left is just an indicator that a new canvas should be created.
g
element in SVG.
Fields
id: String
Element's ID.
Taken from the SVG itself. Isn't automatically generated. Can be empty.
transform: Transform
Element transform.
opacity: Opacity
Group opacity.
After the group is rendered we should combine it with a parent group using the specified opacity.
clip_path: Option<String>
Element clip path.
mask: Option<String>
Element mask.
filter: Option<String>
Element filter.
filter_fill: Option<Paint>
Contains a fill color or paint server used by FilterInput::FillPaint
.
Will be set only when filter actually has a FilterInput::FillPaint
.
filter_stroke: Option<Paint>
Contains a fill color or paint server used by FilterInput::StrokePaint
.
Will be set only when filter actually has a FilterInput::StrokePaint
.
enable_background: Option<EnableBackground>
Indicates that this node can be accessed via filter
.
None
indicates an accumulate
value.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,