pub trait SumSlot: Sized + PartialEq + Copy + Send + 'static {
    // Required method
    fn drag_size(&self) -> Option<[f64; 2]>;
}

Required Methods§

source

fn drag_size(&self) -> Option<[f64; 2]>

Object Safety§

This trait is not object safe.

Implementors§