pub trait IntoResettable<T> {
    fn into_resettable(self) -> Resettable<T>;
}
Expand description

Convert to the intended resettable type

Required Methods

Convert to the intended resettable type

Implementations on Foreign Types

Implementors