bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 13 天前The meaning of thislemmy.mlimagemessage-square72linkfedilinkarrow-up1509arrow-down112
arrow-up1497arrow-down1imageThe meaning of thislemmy.mlbestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 13 天前message-square72linkfedilink
minus-squareNatanox@discuss.tchncs.delinkfedilinkEnglisharrow-up23·13 天前Rust: Borrow handler got mad at you for asking (I’d assume)
minus-squareDr. Bluefall@toast.ooolinkfedilinkEnglisharrow-up19·13 天前It’s either a reference to an object instance, or the instance itself (depending on whether you specified &mut self, &self or just self).
minus-squareferric_carcinization@lemmy.mllinkfedilinkEnglisharrow-up12·13 天前Don’t forget Self, the type of self.
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
.