[][src]Trait cpython::PyClone

pub trait PyClone: Sized {
    fn clone_ref(&self, _: Python) -> Self;
}

Required methods

fn clone_ref(&self, _: Python) -> Self

Loading content...

Implementations on Foreign Types

impl<T> PyClone for Option<T> where
    T: PyClone
[src]

Loading content...

Implementors

impl PyClone for PyErr[src]

impl<T> PyClone for T where
    T: PythonObject
[src]

Loading content...