pub enum Special {
Math {
inner: CowStr,
is_block: bool,
},
CodeInline {
inner: CowStr,
},
CodeBlock {
lvl: usize,
inner: CodeContent,
attributes: Vec<CowStr>,
},
Command {
function: CowStr,
parameters: Vec<Parameter>,
body: Option<Vec<ElementInfo>>,
},
Verbatim {
inner: CowStr,
},
}
Variants§
Trait Implementations§
impl StructuralPartialEq for Special
Auto Trait Implementations§
impl Freeze for Special
impl RefUnwindSafe for Special
impl Send for Special
impl Sync for Special
impl Unpin for Special
impl UnwindSafe for Special
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