pub struct TexNode {
pub node_type: TexNodeType,
pub content: String,
pub args: Option<Vec<TexNode>>,
pub data: Option<Box<TexNodeData>>,
}
Fields§
§node_type: TexNodeType
§content: String
§args: Option<Vec<TexNode>>
§data: Option<Box<TexNodeData>>
Implementations§
Trait Implementations§
impl StructuralPartialEq for TexNode
Auto Trait Implementations§
impl Freeze for TexNode
impl RefUnwindSafe for TexNode
impl Send for TexNode
impl Sync for TexNode
impl Unpin for TexNode
impl UnwindSafe for TexNode
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