Trait mz_catalog::durable::traits::UpgradeInto
source · pub(crate) trait UpgradeInto<U>: Sized {
// Required method
fn upgrade_into(self) -> U;
}
Expand description
A copy of std::convert::Into
so we can work around Rust’s orphan rules.
Required Methods§
fn upgrade_into(self) -> U
Object Safety§
This trait is not object safe.