pub(super) trait LivenessSource {
// Required method
fn liveness_for_region(&mut self, region: RegionVid) -> RegionLiveness<'_>;
}Expand description
The source of liveness information for a given region.
Required Methods§
fn liveness_for_region(&mut self, region: RegionVid) -> RegionLiveness<'_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".