pub trait TryCastJsInto<T>where
T: TryCastFromJs,{
type Error: From<Error>;
// Required methods
fn try_into_cast(&self) -> Result<Cast<'_, T>, Self::Error>;
fn try_into_owned(&self) -> Result<T, Self::Error>;
}
pub trait TryCastJsInto<T>where
T: TryCastFromJs,{
type Error: From<Error>;
// Required methods
fn try_into_cast(&self) -> Result<Cast<'_, T>, Self::Error>;
fn try_into_owned(&self) -> Result<T, Self::Error>;
}