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
[โ€“] [email protected] 7 points 2 days ago (1 children)

@Ephera you have to be a connoisseur to understand this one ๐Ÿ™‚

[โ€“] [email protected] 3 points 1 day ago (2 children)

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).

[โ€“] [email protected] 7 points 1 day ago (1 children)

You can use transpose() to go from Option<Result<T>> to Result<Option<T>> and vice versa.

The "meme" is a trans pride flag and a human pose.

[โ€“] howrar 5 points 22 hours ago

Ah, so a trans pose.

Nice.

[โ€“] [email protected] 2 points 20 hours ago

It's just a "joke" about the method name.