Trait rbatis_codegen::ops::From

source ·
pub trait From<T>: Sized {
    // Required method
    fn op_from(_: T) -> Self;
}

Required Methods§

source

fn op_from(_: T) -> Self

Performs the conversion.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl From<&&Value> for bool

source§

fn op_from(arg: &&Value) -> Self

source§

impl From<&&bool> for bool

source§

fn op_from(arg: &&bool) -> Self

source§

impl From<&Value> for bool

source§

fn op_from(arg: &Value) -> Self

source§

impl From<&bool> for bool

source§

fn op_from(arg: &bool) -> Self

source§

impl From<Value> for bool

source§

fn op_from(arg: Value) -> Self

source§

impl From<bool> for bool

source§

fn op_from(arg: bool) -> Self

Implementors§