this post was submitted on 26 Feb 2025
46 points (92.6% liked)
Rust Programming
8414 readers
90 users here now
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Care to explain for the uninitiated like me? It feels like a meme, but conceptually an Option is very different from a Result, maybe I'm overthinking but to me an Option None means no action was taken (e.g. a function that runs every loop to take an action every second will return None most times and Some when it executes), whereas an Ok(None) means an action was taken and it has nothing to return (e.g. a function that safely reads a value from a JSON file, it didn't failed reading the file so it's an Ok, but the value wasn't there so it's None).
You can use
transpose()
to go fromOption<Result<T>>
toResult<Option<T>>
and vice versa.The "meme" is a trans pride flag and a human pose.
Ah, so a trans pose.
Nice.
It's just a "joke" about the method name.