Skip to main content

PowTrait

Trait PowTrait 

Source
pub trait PowTrait {
    // Required method
    fn get(&self) -> Result<Power, &'static str>;
}

Required Methods§

Source

fn get(&self) -> Result<Power, &'static str>

Implementations on Foreign Types§

Source§

impl PowTrait for f32

Source§

fn get(&self) -> Result<Power, &'static str>

Source§

impl PowTrait for i32

Source§

fn get(&self) -> Result<Power, &'static str>

Implementors§

Source§

impl PowTrait for GpuArray

Source§

impl<'a, A> PowTrait for GpuArrayView<'a, A>
where A: ArrayCompute,