pub enum FmtLine<'s> {
Normal(FmtComposite<'s>),
TableRow(FmtTableRow<'s>),
TableRule(FmtTableRule),
HorizontalRule,
}
Expand description
A line in a text. This structure should normally not be used outside of the lib.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'s> Freeze for FmtLine<'s>
impl<'s> RefUnwindSafe for FmtLine<'s>
impl<'s> Send for FmtLine<'s>
impl<'s> Sync for FmtLine<'s>
impl<'s> Unpin for FmtLine<'s>
impl<'s> UnwindSafe for FmtLine<'s>
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