pub trait ContextualTryInto<T> {
type Context;
type Error;
// Required method
fn contextual_try_into(
self,
context: &Self::Context,
) -> Result<T, Self::Error>;
}
pub trait ContextualTryInto<T> {
type Context;
type Error;
// Required method
fn contextual_try_into(
self,
context: &Self::Context,
) -> Result<T, Self::Error>;
}