Trait r::object::coercion::CommonNum

source ·
pub trait CommonNum: Sized {
    type Common;

    // Required method
    fn into_common(self) -> (Self::Common, Self::Common);
}

Required Associated Types§

Required Methods§

source

fn into_common(self) -> (Self::Common, Self::Common)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl CommonNum for (OptionNA<bool>, OptionNA<bool>)

source§

type Common = OptionNA<i32>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<bool>, OptionNA<f64>)

source§

type Common = OptionNA<f64>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<bool>, OptionNA<i32>)

source§

type Common = OptionNA<i32>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<f64>, OptionNA<bool>)

source§

type Common = OptionNA<f64>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<f64>, OptionNA<f64>)

source§

type Common = OptionNA<f64>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<f64>, OptionNA<i32>)

source§

type Common = OptionNA<f64>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<i32>, OptionNA<bool>)

source§

type Common = OptionNA<i32>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<i32>, OptionNA<f64>)

source§

type Common = OptionNA<f64>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (OptionNA<i32>, OptionNA<i32>)

source§

type Common = OptionNA<i32>

source§

fn into_common(self) -> (Self::Common, Self::Common)

source§

impl CommonNum for (bool, bool)

source§

impl CommonNum for (bool, f64)

source§

impl CommonNum for (bool, i32)

source§

impl CommonNum for (f64, bool)

source§

impl CommonNum for (f64, f64)

source§

impl CommonNum for (f64, i32)

source§

impl CommonNum for (i32, bool)

source§

impl CommonNum for (i32, f64)

source§

impl CommonNum for (i32, i32)

Implementors§