Struct widgetry::geom::geom_batch_stack::GeomBatchStack [−][src]
pub struct GeomBatchStack { batches: Vec<GeomBatch>, axis: Axis, alignment: Alignment, spacing: f64, }
Similar to [Widget::row
]/[Widget::column
], but for GeomBatch
s instead of [Widget
]s,
and follows a builder pattern
You can add items incrementally, change spacing
and axis
, and call batch
at the end to
apply these rules to produce an aggeregate GeomBatch
.
Fields
batches: Vec<GeomBatch>
axis: Axis
alignment: Alignment
spacing: f64
Implementations
impl GeomBatchStack
[src]
impl GeomBatchStack
[src]pub fn horizontal(batches: Vec<GeomBatch>) -> Self
[src]
pub fn vertical(batches: Vec<GeomBatch>) -> Self
[src]
pub fn push(&mut self, geom_batch: GeomBatch)
[src]
pub fn append(&mut self, geom_batches: &mut Vec<GeomBatch>)
[src]
pub fn set_axis(&mut self, new_value: Axis)
[src]
pub fn set_alignment(&mut self, new_value: Alignment)
[src]
pub fn set_spacing(&mut self, spacing: impl Into<f64>) -> &mut Self
[src]
pub fn batch(self) -> GeomBatch
[src]
Trait Implementations
impl Default for GeomBatchStack
[src]
impl Default for GeomBatchStack
[src]