[][src]Trait resvg::prelude::IsDefault

pub trait IsDefault: Default {
    fn is_default(&self) -> bool;
}

Checks that type has a default value.

Required methods

fn is_default(&self) -> bool

Checks that type has a default value.

Loading content...

Implementors

impl<T> IsDefault for T where
    T: PartialEq<T> + Default + Copy
[src]

Loading content...