Ephera@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 11 months agoAfter a day of coding Rust...lemmy.mlimagemessage-square2fedilinkarrow-up110arrow-down10
arrow-up110arrow-down1imageAfter a day of coding Rust...lemmy.mlEphera@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 11 months agomessage-square2fedilink
minus-squarelseif@sopuli.xyzlinkfedilinkarrow-up0·10 months agois that valid syntax in any context? i dont think it is
minus-squareEphera@lemmy.mlOPlinkfedilinkarrow-up1·10 months agoPretty sure, it’s not. That’s why I included the error highlighting. To make it a valid struct field, you’d need to throw in a Box+dyn: pub pint: Box<dyn Sized> For a function parameter, you need an impl and can’t have the pub: pint: impl Sized Obviously, you could define your own struct or generic that also happens to be called Sized, but yeah, that’s cheating.
is that valid syntax in any context? i dont think it is
Pretty sure, it’s not. That’s why I included the error highlighting.
To make it a valid struct field, you’d need to throw in a Box+dyn:
pub pint: Box<dyn Sized>
For a function parameter, you need an
impl
and can’t have thepub
:pint: impl Sized
Obviously, you could define your own struct or generic that also happens to be called
Sized
, but yeah, that’s cheating.