Skip to main content

Angle

Trait Angle 

Source
pub trait Angle {
    type Output;

    // Required method
    fn angle_cos(u: &Self, v: &Self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn angle_cos(u: &Self, v: &Self) -> Self::Output

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§