peroxide::traits::pointer

Trait Oxide

Source
pub trait Oxide: Vector {
    // Required method
    fn ox(self) -> Redox<Self>
       where Self: Sized;
}

Required Methods§

Source

fn ox(self) -> Redox<Self>
where Self: Sized,

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.

Implementations on Foreign Types§

Source§

impl Oxide for Vec<f64>

Source§

fn ox(self) -> Redox<Vec<f64>>

Implementors§