logo
pub trait PointLengths {
    type LengthType;

    fn x_length(&self) -> Self::LengthType;
    fn y_length(&self) -> Self::LengthType;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors