Skip to main content

Cubed

Trait Cubed 

Source
pub trait Cubed {
    type Output;

    // Required method
    fn pow3(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn pow3(self) -> Self::Output

Dyn Compatibility§

This trait is dyn compatible.

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

Implementations on Foreign Types§

Source§

impl Cubed for f32

Source§

type Output = f32

Source§

fn pow3(self) -> <f32 as Cubed>::Output

Source§

impl Cubed for f64

Source§

type Output = f64

Source§

fn pow3(self) -> <f64 as Cubed>::Output

Source§

impl Cubed for i8

Source§

type Output = i8

Source§

fn pow3(self) -> <i8 as Cubed>::Output

Source§

impl Cubed for i16

Source§

type Output = i16

Source§

fn pow3(self) -> <i16 as Cubed>::Output

Source§

impl Cubed for i32

Source§

type Output = i32

Source§

fn pow3(self) -> <i32 as Cubed>::Output

Source§

impl Cubed for i64

Source§

type Output = i64

Source§

fn pow3(self) -> <i64 as Cubed>::Output

Source§

impl Cubed for i128

Source§

impl Cubed for isize

Source§

impl Cubed for u8

Source§

type Output = u8

Source§

fn pow3(self) -> <u8 as Cubed>::Output

Source§

impl Cubed for u16

Source§

type Output = u16

Source§

fn pow3(self) -> <u16 as Cubed>::Output

Source§

impl Cubed for u32

Source§

type Output = u32

Source§

fn pow3(self) -> <u32 as Cubed>::Output

Source§

impl Cubed for u64

Source§

type Output = u64

Source§

fn pow3(self) -> <u64 as Cubed>::Output

Source§

impl Cubed for u128

Source§

impl Cubed for usize

Implementors§