521
The meaning of this
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rust: Borrow handler got mad at you for asking
(I'd assume)
It's either a reference to an object instance, or the instance itself (depending on whether you specified
&mut self
,&self
or justself
).Don't forget
Self
, the type ofself
.