pub trait CoordinateSystem: Sized {
    // Provided methods
    fn coordinate<T: CoordinateLike<Self>>(&self, inst: &T) -> f64 { ... }
    fn coordinate_mut<'a, T: CoordinateLikeMut<Self>>(
        &self,
        inst: &'a mut T
    ) -> &'a mut f64 { ... }
}

Provided Methods§

source

fn coordinate<T: CoordinateLike<Self>>(&self, inst: &T) -> f64

source

fn coordinate_mut<'a, T: CoordinateLikeMut<Self>>( &self, inst: &'a mut T ) -> &'a mut f64

Object Safety§

This trait is not object safe.

Implementors§