pub struct TableRow<'a> {
pub attributes: Vec<Node<'a>>,
pub cells: Vec<TableCell<'a>>,
pub end: usize,
pub start: usize,
}
Expand description
Table row.
Fields§
§attributes: Vec<Node<'a>>
The HTML attributes of the element.
cells: Vec<TableCell<'a>>
The cells in the row.
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§
Auto Trait Implementations§
impl<'a> Freeze for TableRow<'a>
impl<'a> RefUnwindSafe for TableRow<'a>
impl<'a> Send for TableRow<'a>
impl<'a> Sync for TableRow<'a>
impl<'a> Unpin for TableRow<'a>
impl<'a> UnwindSafe for TableRow<'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