pub struct NodeCode {
pub num_backticks: usize,
pub literal: String,
}
Expand description
An inline code span.
Fields§
§num_backticks: usize
The URL for the link destination or image source.
literal: String
The content of the inline code span. As the contents are not interpreted as Markdown at all, they are contained within this structure, rather than inserted into a child inline of any kind.
Trait Implementations§
source§impl PartialEq for NodeCode
impl PartialEq for NodeCode
impl Eq for NodeCode
impl StructuralEq for NodeCode
impl StructuralPartialEq for NodeCode
Auto Trait Implementations§
impl RefUnwindSafe for NodeCode
impl Send for NodeCode
impl Sync for NodeCode
impl Unpin for NodeCode
impl UnwindSafe for NodeCode
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