pub trait GlueAble<H> {
// Required method
fn push_glue_entry_ignoring(
&self,
job: &mut GlueJob<H>,
ignore_idx: &[usize],
);
// Provided method
fn push_glue_entry(&self, job: &mut GlueJob<H>) { ... }
}
Expand description
Trait for objects that can contribute to a GlueJob
Required Methods§
Sourcefn push_glue_entry_ignoring(&self, job: &mut GlueJob<H>, ignore_idx: &[usize])
fn push_glue_entry_ignoring(&self, job: &mut GlueJob<H>, ignore_idx: &[usize])
Add self
to the GlueJob, but ignore some indices
Provided Methods§
Sourcefn push_glue_entry(&self, job: &mut GlueJob<H>)
fn push_glue_entry(&self, job: &mut GlueJob<H>)
Add self
to the GlueJob