Skip to main content

LineAccess

Trait LineAccess 

Source
pub trait LineAccess: Sized
where Line: From<Self>,
{ // Provided method fn direction(self) -> Numeric { ... } }
Expand description

Trait with line-related functions

Provided Methods§

Source

fn direction(self) -> Numeric

Direction vector of this line

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> LineAccess for T
where Line: From<T>,