Skip to main content

IntoPluginValue

Trait IntoPluginValue 

Source
pub trait IntoPluginValue {
    // Required method
    fn into_plugin_value(self) -> PluginValue;
}
Expand description

Helper trait for types that can be converted to PluginValue

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 IntoPluginValue for &str

Source§

impl IntoPluginValue for String

Source§

impl IntoPluginValue for bool

Source§

impl IntoPluginValue for f64

Source§

impl IntoPluginValue for i32

Source§

impl IntoPluginValue for i64

Source§

impl<T: IntoPluginValue> IntoPluginValue for Vec<T>

Implementors§