Region

Trait Region 

Source
pub trait Region: RegionCore {
    // Provided method
    fn overlaps(&self, b: &impl Region) -> bool { ... }
}

Provided Methods§

Source

fn overlaps(&self, b: &impl Region) -> bool

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: RegionCore> Region for T