Trait acacia::traits::Position
[−]
[src]
pub trait Position {
type Point;
fn position(&self) -> Self::Point;
}A type that has a notion of a position
Associated Types
type Point
The underlying point type
Required Methods
fn position(&self) -> Self::Point
The position
Implementors
impl<'a, O> Position for &'a O where O: Positionimpl<O, P> Position for Positioned<O, P> where P: Copy