pub type ArrayBindingStyle = ArrayForm;Expand description
How to represent array-valued fields.
Mirrors eure_document::plan::ArrayForm: orthogonal to BindingStyle;
describes whether array elements are emitted inline, per-element with
push ([]) markers, or per-element with explicit indices ([i]).
Aliased Type§
pub enum ArrayBindingStyle {
Inline,
PerElement(Form),
PerElementIndexed(Form),
}