Trait juxt_matrix::One

source ·
pub trait One {
    type Output;

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

Required Associated Types§

Required Methods§

source

fn one() -> Self::Output

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl One for f32

§

type Output = f32

source§

fn one() -> Self::Output

source§

impl One for f64

§

type Output = f64

source§

fn one() -> Self::Output

source§

impl One for i8

§

type Output = i8

source§

fn one() -> Self::Output

source§

impl One for i16

§

type Output = i16

source§

fn one() -> Self::Output

source§

impl One for i32

§

type Output = i32

source§

fn one() -> Self::Output

source§

impl One for i64

§

type Output = i64

source§

fn one() -> Self::Output

source§

impl One for i128

§

type Output = i128

source§

fn one() -> Self::Output

source§

impl One for isize

§

type Output = isize

source§

fn one() -> Self::Output

source§

impl One for u8

§

type Output = u8

source§

fn one() -> Self::Output

source§

impl One for u16

§

type Output = u16

source§

fn one() -> Self::Output

source§

impl One for u32

§

type Output = u32

source§

fn one() -> Self::Output

source§

impl One for u64

§

type Output = u64

source§

fn one() -> Self::Output

source§

impl One for u128

§

type Output = u128

source§

fn one() -> Self::Output

source§

impl One for usize

§

type Output = usize

source§

fn one() -> Self::Output

Implementors§