pub trait ElementConversion {
    fn from_elem<E: ToPrimitive>(elem: E) -> Self;
    fn to_elem<E: Element>(&self) -> E;
}

Required Methods

Implementations on Foreign Types

Implementors