Trait r::object::coercion::CommonCmp

source ·
pub trait CommonCmp: 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 CommonCmp for (OptionNA<bool>, OptionNA<bool>)

source§

type Common = OptionNA<bool>

source§

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

source§

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

source§

type Common = OptionNA<f64>

source§

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

source§

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

source§

type Common = OptionNA<i32>

source§

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

source§

impl CommonCmp for (OptionNA<bool>, OptionNA<String>)

source§

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

source§

type Common = OptionNA<f64>

source§

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

source§

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

source§

type Common = OptionNA<f64>

source§

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

source§

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

source§

type Common = OptionNA<f64>

source§

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

source§

impl CommonCmp for (OptionNA<f64>, OptionNA<String>)

source§

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

source§

type Common = OptionNA<i32>

source§

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

source§

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

source§

type Common = OptionNA<f64>

source§

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

source§

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

source§

type Common = OptionNA<i32>

source§

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

source§

impl CommonCmp for (OptionNA<i32>, OptionNA<String>)

source§

impl CommonCmp for (OptionNA<String>, OptionNA<bool>)

source§

impl CommonCmp for (OptionNA<String>, OptionNA<f64>)

source§

impl CommonCmp for (OptionNA<String>, OptionNA<i32>)

source§

impl CommonCmp for (OptionNA<String>, OptionNA<String>)

source§

impl CommonCmp for (bool, bool)

source§

impl CommonCmp for (bool, f64)

source§

impl CommonCmp for (bool, i32)

source§

impl CommonCmp for (bool, String)

source§

impl CommonCmp for (f64, bool)

source§

impl CommonCmp for (f64, f64)

source§

impl CommonCmp for (f64, i32)

source§

impl CommonCmp for (f64, String)

source§

impl CommonCmp for (i32, bool)

source§

impl CommonCmp for (i32, f64)

source§

impl CommonCmp for (i32, i32)

source§

impl CommonCmp for (i32, String)

source§

impl CommonCmp for (String, bool)

source§

impl CommonCmp for (String, f64)

source§

impl CommonCmp for (String, i32)

source§

impl CommonCmp for (String, String)

Implementors§