bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 21 days agoThe meaning of thislemmy.mlimagemessage-square71linkfedilinkarrow-up1540arrow-down114
arrow-up1526arrow-down1imageThe meaning of thislemmy.mlbestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 21 days agomessage-square71linkfedilink
minus-squareDr. Bluefall@toast.ooolinkfedilinkEnglisharrow-up19·21 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·21 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
.