pub struct XmlFence {
pub content: String,
pub content_offset: usize,
pub fence_start: usize,
pub fence_end: usize,
}Expand description
A fenced code block with language supersigil-xml.
Fields§
§content: StringThe raw content between the fences.
content_offset: usizeByte offset of the content start in the normalized source (after the opening delimiter line).
fence_start: usizeByte offset of the opening fence delimiter (``` line) in the
normalized source.
fence_end: usizeByte offset of the end of the closing fence delimiter in the normalized source.
Trait Implementations§
impl StructuralPartialEq for XmlFence
Auto Trait Implementations§
impl Freeze for XmlFence
impl RefUnwindSafe for XmlFence
impl Send for XmlFence
impl Sync for XmlFence
impl Unpin for XmlFence
impl UnsafeUnpin for XmlFence
impl UnwindSafe for XmlFence
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