pub trait Stable<'cx> {
type T;
// Required method
fn stable(&self, tables: &mut Tables<'_>) -> Self::T;
}
Expand description
Trait used to convert between an internal MIR type to a Stable MIR type.
pub trait Stable<'cx> {
type T;
// Required method
fn stable(&self, tables: &mut Tables<'_>) -> Self::T;
}
Trait used to convert between an internal MIR type to a Stable MIR type.