Ephera@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 11 months agoAfter a day of coding Rust...lemmy.mlimagemessage-square7fedilinkarrow-up1204arrow-down17
arrow-up1197arrow-down1imageAfter a day of coding Rust...lemmy.mlEphera@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 11 months agomessage-square7fedilink
minus-squareEphera@lemmy.mlOPlinkfedilinkarrow-up4·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.
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.thats what i figured. thanks :-)