pub trait GetProperty {
    fn get_property(el: impl Into<f64>, name: &str) -> Option<Self>
    where
        Self: Sized
; }

Required Methods

Implementations on Foreign Types

Implementors