pub trait PointAccess: Sized{
// Provided methods
fn x(self) -> Numeric { ... }
fn y(self) -> Numeric { ... }
fn complex(self) -> Numeric { ... }
}Expand description
Trait with point-related functions
Provided Methods§
Object Safety§
This trait is not object safe.