Enum cdoc_parser::raw::Special
source · 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§
source§impl PartialEq<Special> for Special
impl PartialEq<Special> for Special
impl StructuralPartialEq for Special
Auto Trait Implementations§
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