this post was submitted on 11 Dec 2025
33 points (100.0% liked)

Rust

7572 readers
1 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] SorteKanin@feddit.dk 7 points 5 days ago (10 children)

Can't wait for the never type to be stable :D

[–] thingsiplay@beehaw.org 1 points 4 days ago (9 children)

I don't understand why this never type was introduced at all. Instead functions not returning, shouldn't Rust enforce returning from function and instead use a None in place of never type? Otherwise how will the "Unwinding" of program flow implemented?

[–] TehPers@beehaw.org 3 points 4 days ago (4 children)

I don't know where None comes from (what's the T in Option<T>?)

Assuming you meant (), that's a unit type with one valid value. It's a ZST, but can be created and returned.

! is a bottom type. It's uninhabited. Can't be created. Functions can never return it because they can never construct it. So why's this useful? It can be coerced to any type.

Because the set of valid values for ! is the null set, by contradiction, there do not exist any values valid for the type ! that are invalid for any other type T. Therefore, all valid values of ! are also valid values of any other type T, and you can always convert from it to any other type.

Notably, this is already possible, but language support for it isn't amazing:

enum A {}

fn bar(a: A) {
    let foo: Box<Arc<Rc<Mutex<String>>>> = match a {}
}

Heck you can even do this today:

// `loop {}` never returns, so its type is `!`:
let blah: String = loop {};
[–] thingsiplay@beehaw.org 1 points 4 days ago (1 children)

To me it makes no sense. Because if it never returns, then it has no return value. Therefore it makes no sense to have a type for something that does not exist.

[–] TehPers@beehaw.org 6 points 4 days ago (1 children)

Because if it never returns, then it has no return value.

Then how would you annotate having no return value?

[–] thingsiplay@beehaw.org 0 points 4 days ago (1 children)

I guess it makes sense. What I struggled with is, as the type is unusable basically and I didn't like the idea it being a type. But for documentation reasons, it makes sense. Otherwise, it has no practical meaning. Even a comment could have the same effect.

[–] TehPers@beehaw.org 5 points 4 days ago

The never type comes more from type theory and isn't common in other languages (though TS has never). Similar to 0 or the null set, it exists as a "base case" for types. For example, where you have unions of T1 | T2 | ..., the "empty union" is the never type. Similarly, for set theory, a union of no sets is the null set, and in algebra, the summation of no numbers is 0.

In practice, because it can't be constructed, it can be used in unique ways. These properties happen to be super useful in niche places.

load more comments (2 replies)
load more comments (6 replies)
load more comments (6 replies)