[][src]Struct svg::node::Value

pub struct Value(_);

A value of an attribute.

Trait Implementations

impl From<Value> for String[src]

impl From<i8> for Value[src]

impl From<i16> for Value[src]

impl From<i32> for Value[src]

impl From<i64> for Value[src]

impl From<isize> for Value[src]

impl From<u8> for Value[src]

impl From<u16> for Value[src]

impl From<u32> for Value[src]

impl From<u64> for Value[src]

impl From<usize> for Value[src]

impl From<f32> for Value[src]

impl From<f64> for Value[src]

impl From<String> for Value[src]

impl From<bool> for Value[src]

impl<'l> From<&'l str> for Value[src]

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

impl<T0, T1> From<(T0, T1)> for Value where
    T0: Into<Value>,
    T1: Into<Value>, 
[src]

impl<T0, T1, T2, T3> From<(T0, T1, T2, T3)> for Value where
    T0: Into<Value>,
    T1: Into<Value>,
    T2: Into<Value>,
    T3: Into<Value>, 
[src]

impl From<Data> for Value[src]

impl Clone for Value[src]

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

Performs copy-assignment from source. Read more

impl Display for Value[src]

impl Debug for Value[src]

impl Deref for Value[src]

type Target = str

The resulting type after dereferencing.

Auto Trait Implementations

impl Send for Value

impl Sync for Value

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.