pub trait ShrinkablePoint {
    // Required method
    fn shrink(&mut self, other: &Self);
}

Required Methods§

source

fn shrink(&mut self, other: &Self)

Object Safety§

This trait is not object safe.

Implementors§