lang | libs (typesystem | parametricity | reflection)
The lang team ultimately decided to retract this RFC. It was never implemented. The motivation for retraction was that the change was too prone to mis-use and did not provide adequate benefit.
Remove the 'static
bound from the type_id
intrinsic so users can experiment with usecases where lifetimes either soundly irrelevant to type checking or where lifetime correctness is enforced elsewhere in the program.
Sometimes it's useful to encode a type so it can be checked at runtime. This can be done using the type_id
intrinsic, that gives an id value that's guaranteed to be unique across the types available to the program. The drawback is that it's only valid for types that are 'static
, because concrete lifetimes aren't encoded in the id. For most cases this makes sense, otherwise the encoded type could be used to represent data in lifetimes it isn't valid for. There are cases though where lifetimes can be soundly checked outside the type id, so it's not possible to misrepresent the validy of the data. These cases can't make use of type ids right now, they need to rely on workarounds. One such workaround is to define a trait with an associated type that's expected to be a 'static
version of the implementor:
unsafe trait Keyed {
type Key: 'static;
}
struct NonStaticStruct<'a> {
a: &'a str
}
unsafe impl <'a> Keyed for NonStaticStruct<'a> {
type Key = NonStaticStruct<'static>;
}
This requires additional boilerplate that may lead to undefined behaviour if implemented incorrectly or not kept up to date.
This RFC proposes simply removing the 'static
bound from the type_id
intrinsic, leaving the stable TypeId
and Any
traits unchanged. That way users who opt-in to unstable intrinsics can build the type equality guarantees they need without waiting for stable API support.
This is an important first step in expanding the tools available to users at runtime to reason about their data. With the ability to fetch a guaranteed unique type id for non-static types, users can build their own TypeId
or Any
traits.
Remove the 'static
bound from the type_id
intrinsic in libcore
.
Allowing type ids for non-static types exposes the fact that concrete lifetimes aren't taken into account. This means a type id for SomeStruct<'a, 'b>
will be the same as SomeStruct<'b, 'a>
, even though they're different types.
Users need to be very careful using type_id
directly, because it can easily lead to undefined behaviour if lifetimes aren't verified properly.
This changes an unstable compiler intrinsic so we don't need to teach it. The change does need to come with plenty of warning that it's unsound for type-checking and can't be used to produce something like a lifetime parameterised Any
trait.
Removing the 'static
bound means callers may now depend on the fact that type_id
doesn't consider concrete lifetimes, even though this probably isn't its intended final behaviour.
runtime_type_id
that's specifically designed ignore concrete lifetimes, like type_id
does now. Having a totally separate intrinsic means type_id
could be changed in the future to account for lifetimes without impacting the usecases that specifically ignore them.TypeId
for non-static types.