pub trait PyMatchInto {
type Output;
// Required method
fn match_into(self) -> Self::Output;
}Expand description
It is recommended to implement this trait only when using clone in PyMatchRef/PyMatchMut
would significantly impact memory/performance.