pub trait AlignableOpInterface: Op {
// Provided methods
fn alignment(&self, ctx: &Context) -> Option<u32>
where Self: Sized { ... }
fn set_alignment(&self, ctx: &Context, alignment: u32)
where Self: Sized { ... }
}Expand description
Ops that can have an alignment set.