pub enum El {
Text(Text),
Table(Table),
}Expand description
A Element that can be rendered as styled+formatted text using paint().
Elements are simply struts with various properties which you can build directly or parse from text.
Variants§
Implementations§
Trait Implementations§
impl Eq for El
impl StructuralPartialEq for El
Auto Trait Implementations§
impl Freeze for El
impl RefUnwindSafe for El
impl Send for El
impl Sync for El
impl Unpin for El
impl UnwindSafe for El
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