pub struct LinearLayout { /* private fields */ }
Expand description

Arranges a list of elements sequentially.

Currently, elements can only be arranged vertically.

Examples

With setters:

use rckive_genpdf::elements;
let mut layout = elements::LinearLayout::vertical();
layout.push(elements::Paragraph::new("Test1"));
layout.push(elements::Paragraph::new("Test2"));

Chained:

use rckive_genpdf::elements;
let layout = elements::LinearLayout::vertical()
    .element(elements::Paragraph::new("Test1"))
    .element(elements::Paragraph::new("Test2"));

Implementations§

Creates a new linear layout that arranges its elements vertically.

Adds the given element to this layout.

Adds the given element to this layout and it returns the layout.

Trait Implementations§

Renders this element to the given area using the given style and font cache. Read more
Draws a frame around this element using the given line style.
Adds a padding to this element.
Sets the default style for this element and its children.
Extends a collection with the contents of an iterator. Read more
🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Creates a boxed element from this element.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.