Trait dioxus::prelude::SuperInto

source ·
pub trait SuperInto<O, M = ()> {
    // Required method
    fn super_into(self) -> O;
}
Expand description

A enhanced version of the Into trait that allows with more flexibility.

Required Methods§

source

fn super_into(self) -> O

Convert from a type to another type.

Implementors§

source§

impl<T, O, M> SuperInto<O, M> for T
where O: SuperFrom<T, M>,