pub struct NodeCode {
pub num_backticks: usize,
pub literal: String,
}Expand description
An inline code span.
Fields§
§num_backticks: usizeThe number of backticks
literal: StringThe 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§
impl Eq for NodeCode
impl StructuralPartialEq for NodeCode
Auto Trait Implementations§
impl Freeze for NodeCode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.