Closed syapk closed 2 years ago
main
URL to the section(s) of the book with this problem:
https://jimskapt.github.io/rust-book-fr/ch15-02-deref.html
Description of the problem:
, nécessite que nous implémentions une méthode deref qui prend possession de self et retourne une référence vers la donnée interne.
requires us to implement one method named deref that borrows self and returns a reference to the inner data
Suggested fix:
, nécessite que nous implémentions une méthode deref qui emprunte self et retourne une référence vers la donnée interne.
main
branch to see if this has already been fixedURL to the section(s) of the book with this problem:
https://jimskapt.github.io/rust-book-fr/ch15-02-deref.html
Description of the problem:
, nécessite que nous implémentions une méthode deref qui prend possession de self et retourne une référence vers la donnée interne.
requires us to implement one method named deref that borrows self and returns a reference to the inner data
Suggested fix:
, nécessite que nous implémentions une méthode deref qui emprunte self et retourne une référence vers la donnée interne.