Struct widgetry::GeomBatchStack[][src]

pub struct GeomBatchStack {
    batches: Vec<GeomBatch>,
    axis: Axis,
    alignment: Alignment,
    spacing: f64,
}

Similar to [Widget::row]/[Widget::column], but for GeomBatchs 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: Axisalignment: Alignmentspacing: f64

Implementations

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 Debug for GeomBatchStack[src]

impl Default for GeomBatchStack[src]

Auto Trait Implementations

impl RefUnwindSafe for GeomBatchStack

impl Send for GeomBatchStack

impl Sync for GeomBatchStack

impl Unpin for GeomBatchStack

impl UnwindSafe for GeomBatchStack

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.