Ephera to Programmer [email protected]English • 11 months agoAfter a day of coding Rust...lemmy.mlimagemessage-square7fedilinkarrow-up1194arrow-down17
arrow-up1187arrow-down1imageAfter a day of coding Rust...lemmy.mlEphera to Programmer [email protected]English • 11 months agomessage-square7fedilink
minus-square@[email protected]linkfedilink1•11 months agois that valid syntax in any context? i dont think it is
minus-squareEpheraOPlinkfedilink4•11 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 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
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 :-)