[][src]Struct usvg::Group

pub struct Group {
    pub id: String,
    pub transform: Transform,
    pub opacity: Opacity,
    pub clip_path: Option<String>,
    pub mask: Option<String>,
    pub filter: Option<String>,
}

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.

Trait Implementations

impl Clone for Group[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Group[src]

impl Debug for Group[src]

Auto Trait Implementations

impl Send for Group

impl Sync for Group

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]