pub struct TableCaption<'a> {
pub attributes: Option<Vec<Node<'a>>>,
pub content: Vec<Node<'a>>,
pub end: usize,
pub start: usize,
}
Expand description
Table caption.
Fields§
§attributes: Option<Vec<Node<'a>>>
The HTML attributes of the element.
content: Vec<Node<'a>>
The content of the element.
end: usize
The byte position in the wiki text where the element ends.
start: usize
The byte position in the wiki text where the element starts.
Trait Implementations§
Source§impl<'a> Debug for TableCaption<'a>
impl<'a> Debug for TableCaption<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableCaption<'a>
impl<'a> RefUnwindSafe for TableCaption<'a>
impl<'a> Send for TableCaption<'a>
impl<'a> Sync for TableCaption<'a>
impl<'a> Unpin for TableCaption<'a>
impl<'a> UnwindSafe for TableCaption<'a>
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