floating_ui_utils

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 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: GetClientRectsCloneableFactory> GetClientRectsCloneable for Instance<Factory, ()>

Implementors§

source§

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