Trait GetBoundingClientRectCloneable

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

Required Methods§

Trait Implementations§

Source§

impl Clone for Box<dyn GetBoundingClientRectCloneable>

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: GetBoundingClientRectCloneableFactory> GetBoundingClientRectCloneable for Instance<Factory, ()>

Implementors§

Source§

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