floating_ui_utils

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 copy 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,