2017-05-21 05:18:31 +00:00
|
|
|
use func::MethodProto;
|
|
|
|
|
|
|
|
pub struct Proto {
|
|
|
|
pub name: &'static str,
|
|
|
|
pub methods: &'static [MethodProto],
|
|
|
|
pub py_methods: &'static [PyMethod],
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PyMethod {
|
|
|
|
pub name: &'static str,
|
|
|
|
pub proto: &'static str,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const OBJECT: Proto = Proto {
|
|
|
|
name: "Object",
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__getattr__",
|
|
|
|
arg: "Name",
|
2017-05-23 19:57:18 +00:00
|
|
|
pyres: true,
|
2017-05-23 17:44:23 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectGetAttrProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Ternary {
|
2017-05-22 05:22:45 +00:00
|
|
|
name: "__setattr__",
|
2017-05-21 05:18:31 +00:00
|
|
|
arg1: "Name",
|
|
|
|
arg2: "Value",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectSetAttrProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__delattr__",
|
|
|
|
arg: "Name",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectDelAttrProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__str__",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectStrProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__repr__",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectReprProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__format__",
|
|
|
|
arg: "Format",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectFormatProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__hash__",
|
|
|
|
pyres: false,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectHashProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__bytes__",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectBytesProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__bool__",
|
|
|
|
pyres: false,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectBoolProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__richcmp__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectRichcmpProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
py_methods: &[
|
|
|
|
PyMethod {
|
|
|
|
name: "__format__",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectFormatProtocolImpl",
|
2017-05-21 05:18:31 +00:00
|
|
|
},
|
|
|
|
PyMethod {
|
|
|
|
name: "__bytes__",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::basic::PyObjectBytesProtocolImpl",
|
2017-05-21 05:18:31 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
pub const ASYNC: Proto = Proto {
|
|
|
|
name: "Async",
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__await__",
|
|
|
|
pyres: true,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::async::PyAsyncAwaitProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__aiter__",
|
|
|
|
pyres: true,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::async::PyAsyncAiterProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__anext__",
|
|
|
|
pyres: true,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::async::PyAsyncAnextProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__aenter__",
|
|
|
|
pyres: true,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::async::PyAsyncAenterProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Quaternary {
|
|
|
|
name: "__aexit__",
|
|
|
|
arg1: "ExcType", arg2: "ExcValue", arg3: "Traceback",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::async::PyAsyncAexitProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
py_methods: &[
|
|
|
|
PyMethod {
|
|
|
|
name: "__aenter__",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::async::PyAsyncAenterProtocolImpl",
|
2017-05-21 05:18:31 +00:00
|
|
|
},
|
|
|
|
PyMethod {
|
|
|
|
name: "__aexit__",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::async::PyAsyncAexitProtocolImpl",
|
2017-05-21 05:18:31 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const CONTEXT: Proto = Proto {
|
|
|
|
name: "Context",
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__enter__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::context::PyContextEnterProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Quaternary {
|
|
|
|
name: "__exit__",
|
|
|
|
arg1: "ExcType", arg2: "ExcValue", arg3: "Traceback",
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::context::PyContextExitProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
py_methods: &[
|
|
|
|
PyMethod {
|
|
|
|
name: "__enter__",
|
|
|
|
proto: "_pyo3::class::context::PyContextEnterProtocolImpl",
|
|
|
|
},
|
|
|
|
PyMethod {
|
|
|
|
name: "__exit__",
|
|
|
|
proto: "_pyo3::class::context::PyContextExitProtocolImpl",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const DESCR: Proto = Proto {
|
|
|
|
name: "Descriptor",
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Ternary {
|
|
|
|
name: "__get__",
|
|
|
|
arg1: "Inst",
|
|
|
|
arg2: "Owner",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::descr::PyDescrGetProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Ternary {
|
|
|
|
name: "__set__",
|
|
|
|
arg1: "Inst",
|
|
|
|
arg2: "Value",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::descr::PyDescrSetProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__det__",
|
|
|
|
arg: "Inst",
|
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::descr::PyDescrDelProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__set_name__",
|
|
|
|
arg: "Inst",
|
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::descr::PyDescrSetNameProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
py_methods: &[
|
|
|
|
PyMethod {
|
|
|
|
name: "__del__",
|
|
|
|
proto: "_pyo3::class::context::PyDescrDelProtocolImpl",
|
|
|
|
},
|
|
|
|
PyMethod {
|
|
|
|
name: "__set_name__",
|
|
|
|
proto: "_pyo3::class::context::PyDescrNameProtocolImpl",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const ITER: Proto = Proto {
|
|
|
|
name: "Iter",
|
|
|
|
py_methods: &[],
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__iter__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::iter::PyIterIterProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__next__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::iter::PyIterNextProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
pub const MAPPING: Proto = Proto {
|
|
|
|
name: "Mapping",
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__len__",
|
|
|
|
pyres: false,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingLenProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__getitem__",
|
|
|
|
arg: "Key",
|
|
|
|
pyres: true,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingGetItemProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Ternary{
|
|
|
|
name: "__setitem__",
|
|
|
|
arg1: "Key",
|
|
|
|
arg2: "Value",
|
|
|
|
pyres: false,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingSetItemProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__delitem__",
|
|
|
|
arg: "Key",
|
|
|
|
pyres: false,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingDelItemProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__contains__",
|
|
|
|
arg: "Value",
|
|
|
|
pyres: false,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingContainsProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__reversed__",
|
|
|
|
pyres: true,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingReversedProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__iter__",
|
|
|
|
pyres: true,
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingIterProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
py_methods: &[
|
|
|
|
PyMethod {
|
|
|
|
name: "__iter__",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingIterProtocolImpl",
|
2017-05-21 05:18:31 +00:00
|
|
|
},
|
|
|
|
PyMethod {
|
|
|
|
name: "__contains__",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingContainsProtocolImpl",
|
2017-05-21 05:18:31 +00:00
|
|
|
},
|
|
|
|
PyMethod {
|
|
|
|
name: "__reversed__",
|
2017-05-25 03:31:51 +00:00
|
|
|
proto: "::pyo3::class::mapping::PyMappingReversedProtocolImpl",
|
2017-05-21 05:18:31 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const SEQ: Proto = Proto {
|
|
|
|
name: "Sequence",
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__len__",
|
|
|
|
pyres: false,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PySequenceLenProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__getitem__",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PySequenceGetItemProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__setitem__",
|
|
|
|
arg: "Value",
|
|
|
|
pyres: false,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PyMappingSetItemProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__delitem__",
|
|
|
|
arg: "Key",
|
|
|
|
pyres: false,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::mapping::PyMappingDelItemProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__contains__",
|
|
|
|
arg: "Item",
|
|
|
|
pyres: false,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PySequenceContainsProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__concat__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PySequenceConcatProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__repeat__",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PySequenceRepeatProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary{
|
|
|
|
name: "__inplace_concat__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PySequenceInplaceConcatProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary{
|
|
|
|
name: "__inplace_repeat__",
|
|
|
|
pyres: true,
|
2017-05-23 19:57:18 +00:00
|
|
|
proto: "pyo3::class::sequence::PySequenceInplaceRepeatProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
py_methods: &[],
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const NUM: Proto = Proto {
|
|
|
|
name: "Number",
|
|
|
|
methods: &[
|
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__add__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberAddProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__sub__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberSubProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__mul__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberMulProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__matmul__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberMatmulProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__truediv__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberTruedivProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__floordiv__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberFloordivProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__mod__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberModProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__divmod__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberDivmodProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Ternary {
|
|
|
|
name: "__pow__",
|
|
|
|
arg1: "Other",
|
|
|
|
arg2: "Modulo",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberPowProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__lshift__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberLShiftProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rshift__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRShiftProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__and__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberAndProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__xor__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberXorProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__or__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberOrProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
|
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__radd__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRAddProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rsub__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRSubProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rmul__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRMulProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rmatmul__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRMatmulProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rtruediv__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRTruedivProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rfloordiv__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRFloordivProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rmod__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRModProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rdivmod__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRDivmodProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Ternary {
|
|
|
|
name: "__rpow__",
|
|
|
|
arg1: "Other",
|
|
|
|
arg2: "Modulo",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRPowProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rlshift__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRLShiftProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rrshift__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRRShiftProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rand__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRAndProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__rxor__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRXorProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__ror__",
|
|
|
|
arg: "Other",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberROrProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
|
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__iadd__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIAddProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__isub__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberISubProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__imul__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIMulProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__imatmul__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIMatmulProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__itruediv__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberITruedivProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__ifloordiv__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIFloordivProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__imod__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIModProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Ternary {
|
|
|
|
name: "__ipow__",
|
|
|
|
arg1: "Other",
|
|
|
|
arg2: "Modulo",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIPowProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__ilshift__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberILShiftProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__irshift__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIRShiftProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__iand__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIAndProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__ixor__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIXorProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Binary {
|
|
|
|
name: "__ior__",
|
|
|
|
arg: "Other",
|
2017-05-27 17:49:38 +00:00
|
|
|
pyres: false,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIOrProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
|
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__neg__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberNegProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__pos__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberPosProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__abs__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberAbsProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__invert__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberInvertProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__complex__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberComplexProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__int__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIntProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__float__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberFloatProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__round__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberRoundProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
MethodProto::Unary {
|
|
|
|
name: "__index__",
|
|
|
|
pyres: true,
|
2017-05-25 05:43:07 +00:00
|
|
|
proto: "::pyo3::class::number::PyNumberIndexProtocol"},
|
2017-05-21 05:18:31 +00:00
|
|
|
],
|
|
|
|
py_methods: &[
|
|
|
|
PyMethod {
|
|
|
|
name: "__radd__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRAddProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rsub__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRSubProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rmul__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRMulProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rmatmul__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRMatmulProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rtruediv__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRTruedivProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rfloordiv__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRFloordivProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rmod__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRModProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rdivmod__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRDivmodProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rpow__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRPowProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rlshift__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRLShiftProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rrshift__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRRShiftProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rand__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRAndProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__rxor__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRXorProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__ror__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberROrProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__complex__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberComplexProtocolImpl"},
|
|
|
|
PyMethod {
|
|
|
|
name: "__round__",
|
|
|
|
proto: "_pyo3::class::number::PyNumberRoundProtocolImpl"},
|
|
|
|
]
|
|
|
|
};
|