hir_expand

Trait Intern

Source
pub trait Intern {
    type Database<'db>: ?Sized;
    type ID;

    // Required method
    fn intern(self, db: &Self::Database<'_>) -> Self::ID;
}

Required Associated Types§

Source

type Database<'db>: ?Sized

Source

type ID

Required Methods§

Source

fn intern(self, db: &Self::Database<'_>) -> Self::ID

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.

Implementations on Foreign Types§

Source§

impl Intern for SyntaxContextData

Source§

type Database<'db> = dyn ExpandDatabase + 'db

Source§

type ID = SyntaxContextId

Source§

fn intern(self, db: &Self::Database<'_>) -> SyntaxContextId

Implementors§