Trait r::object::coercion::CoercibleInto

source ·
pub trait CoercibleInto<T>: Sized {
    // Required method
    fn coerce_into(self) -> T;
}

Required Methods§

source

fn coerce_into(self) -> T

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl CoercibleInto<OptionNA<bool>> for bool

source§

impl CoercibleInto<OptionNA<f64>> for f64

source§

impl CoercibleInto<OptionNA<i32>> for i32

source§

impl CoercibleInto<OptionNA<String>> for String

source§

impl CoercibleInto<bool> for bool

source§

impl CoercibleInto<bool> for f64

source§

impl CoercibleInto<bool> for i32

source§

impl CoercibleInto<f64> for bool

source§

impl CoercibleInto<f64> for f64

source§

impl CoercibleInto<f64> for i32

source§

impl CoercibleInto<i32> for bool

source§

impl CoercibleInto<i32> for f64

source§

impl CoercibleInto<i32> for i32

source§

impl CoercibleInto<String> for bool

source§

impl CoercibleInto<String> for f64

source§

impl CoercibleInto<String> for i32

source§

impl CoercibleInto<String> for String

Implementors§