bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 4 个月前The meaning of thislemmy.mlexternal-linkmessage-square65linkfedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkThe meaning of thislemmy.mlbestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 4 个月前message-square65linkfedilink
minus-squareDr. Bluefall@toast.ooolinkfedilinkEnglisharrow-up0·4 个月前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-up0·4 个月前Don’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
.