pub trait PushableFieldList<'vm>: HList {
    fn push(
        self,
        context: &mut ActiveThread<'vm>,
        field_names: &mut Vec<InternedStr>
    ) -> Result<()>; }

Required Methods

Implementations on Foreign Types

Implementors