Trait Area

Source
pub trait Area {
    // Required method
    fn area(&self) -> &DRect;
}

Required Methods§

Source

fn area(&self) -> &DRect

Trait Implementations§

Source§

impl<'a, T: Area + 'static> From<&'a T> for &'a (dyn Area + 'static)

Source§

fn from(value: &'a T) -> Self

Converts to this type from the input type.

Implementors§