Trait GetClientRectsCloneable

Source
pub trait GetClientRectsCloneable: Clone + Dyn {
    // Required method
    fn call(&self) -> Vec<ClientRectObject>;
}

Required Methods§

Trait Implementations§

Source§

impl Clone for Box<dyn GetClientRectsCloneable>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementations on Foreign Types§

Source§

impl<Factory: GetClientRectsCloneableFactory> GetClientRectsCloneable for Instance<Factory, ()>

Implementors§

Source§

impl<F> GetClientRectsCloneable for F
where F: Fn() -> Vec<ClientRectObject> + Clone + 'static,