Trait PyMatchInto

Source
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.

Required Associated Types§

Required Methods§

Source

fn match_into(self) -> Self::Output

Implementors§