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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§