pub enum FlowElement {
Text {
text: String,
font: Font,
font_size: f64,
line_height: f64,
},
Spacer(f64),
Table(Table),
RichText {
rich: RichText,
line_height: f64,
},
Image {
name: String,
image: Arc<Image>,
max_width: f64,
max_height: f64,
center: bool,
},
}Expand description
An element that can be placed in a FlowLayout.
Variants§
Text
A block of word-wrapped text.
Spacer(f64)
Vertical space in points.
Table(Table)
A simple table.
RichText
A single line of mixed-style text.
Image
An image scaled to fit within max dimensions, preserving aspect ratio.
Uses Arc<Image> to avoid cloning the pixel buffer when building.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlowElement
impl RefUnwindSafe for FlowElement
impl Send for FlowElement
impl Sync for FlowElement
impl Unpin for FlowElement
impl UnsafeUnpin for FlowElement
impl UnwindSafe for FlowElement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more