Skip to main content

IntoParam

Trait IntoParam 

Source
pub trait IntoParam {
    // Required method
    fn into_scalar(self) -> ScalarValue;
}
Expand description

파라미터 변환 트레이트

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoParam for &str

Source§

impl IntoParam for String

Source§

impl IntoParam for bool

Source§

impl IntoParam for f64

Source§

impl IntoParam for i32

Source§

impl IntoParam for i64

Source§

impl<T: IntoParam> IntoParam for Option<T>

Implementors§