Enum pyo3::class::methods::PyMethodType[][src]

pub enum PyMethodType {
    PyCFunction(PyCFunction),
    PyCFunctionWithKeywords(PyCFunctionWithKeywords),
    PyNoArgsFunction(PyNoArgsFunction),
    PyNewFunc(newfunc),
    PyInitFunc(initproc),
}

Variants

Trait Implementations

impl Copy for PyMethodType
[src]

impl Clone for PyMethodType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PyMethodType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations