pub enum RunChild {
Text(Text),
Sym(Sym),
DeleteText(DeleteText),
Tab(Tab),
Break(Break),
Drawing(Box<Drawing>),
Shape(Box<Shape>),
FieldChar(FieldChar),
InstrText(Box<InstrText>),
DeleteInstrText(Box<DeleteInstrText>),
InstrTextString(String),
}
Variants§
Text(Text)
Sym(Sym)
DeleteText(DeleteText)
Tab(Tab)
Break(Break)
Drawing(Box<Drawing>)
Shape(Box<Shape>)
FieldChar(FieldChar)
InstrText(Box<InstrText>)
DeleteInstrText(Box<DeleteInstrText>)
InstrTextString(String)
Trait Implementations§
impl StructuralPartialEq for RunChild
Auto Trait Implementations§
impl Freeze for RunChild
impl RefUnwindSafe for RunChild
impl Send for RunChild
impl Sync for RunChild
impl Unpin for RunChild
impl UnwindSafe for RunChild
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