pub trait IntoReactiveValue<T, M> {
// Required method
fn into_reactive_value(self) -> T;
}Expand description
A helper trait that works like Into<T> but uses a marker generic
to allow more From implementations than would be allowed with just Into<T>.
Required Methods§
Sourcefn into_reactive_value(self) -> T
fn into_reactive_value(self) -> T
Converts self into a T.