Rust isn't real. Its just a bit much of abbreviated gibberish created by religious fanatics worshipping safe programming practices and reasonable error handling!
this post was submitted on 20 Dec 2023
193 points (96.6% liked)
Programmer Humor
32361 readers
491 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
Wait until you learn about Lisp
You're going to borrow-checker hell now
ngl, this meme tickled me
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 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.
thats what i figured. thanks :-)