Insert missing `impl` keywords

Updates the class customization guide.
This commit is contained in:
Sergey Kvachonok 2021-04-05 12:02:46 +03:00
parent 0c0214690f
commit 4b675cc364
1 changed files with 3 additions and 3 deletions

View File

@ -16,9 +16,9 @@ The [`PyObjectProtocol`] trait provides several basic customizations.
To customize object attribute access, define the following methods:
* `fn __getattr__(&self, name: FromPyObject) -> PyResult<impl IntoPy<PyObject>>`
* `fn __setattr__(&mut self, name: FromPyObject, value: FromPyObject) -> PyResult<()>`
* `fn __delattr__(&mut self, name: FromPyObject) -> PyResult<()>`
* `fn __getattr__(&self, name: impl FromPyObject) -> PyResult<impl IntoPy<PyObject>>`
* `fn __setattr__(&mut self, name: impl FromPyObject, value: impl FromPyObject) -> PyResult<()>`
* `fn __delattr__(&mut self, name: impl FromPyObject) -> PyResult<()>`
Each method corresponds to Python's `self.attr`, `self.attr = value` and `del self.attr` code.