Trait svg::node::Node [] [src]

pub trait Node: 'static + Display {
    fn append<T>(&mut self, _: T)
    where
        Self: Sized,
        T: Node
; fn assign<T, U>(&mut self, _: T, _: U)
    where
        Self: Sized,
        T: Into<String>,
        U: Into<Value>
; }

A node.

Required Methods

Append a child node.

Assign an attribute.

Implementors