bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 19 days agoThe meaning of thislemmy.mlimagemessage-square68fedilinkarrow-up1513arrow-down115
arrow-up1498arrow-down1imageThe meaning of thislemmy.mlbestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 19 days agomessage-square68fedilink
minus-squareDr. Bluefall@toast.ooolinkfedilinkEnglisharrow-up19·18 days agoIt’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-up13·18 days agoDon’t forget Self, the type of self.
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
.