362
Sublinks Aims to Be a Drop-In Replacement for Lemmy
(wedistribute.org)
A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).
If you wanted to get help with moderating your own community then head over to !moderators@lemmy.world!
Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration), Search Lemmy
Here's some examples written on my phone:
And there's many other awesome ways to use a Result including turning it into an Option or unwrapping it unsafely. I recommend you just search "Rust book" on your search engine and browse it. Here's the docs to the Result enum.
Ah, so it is like a wrapper enum,
ok
contains the data type you want anderr
the error object?Exactly! The other wrapper enum I named (Option) is the same kind of concept but with
Some(value)
andNone
.