pub struct MdTableCell {
pub content: Vec<MdInlineElement>,
pub alignment: TableAlignment,
pub is_header: bool,
}Expand description
Represents a cell in a markdown table.
Fields§
§content: Vec<MdInlineElement>§alignment: TableAlignment§is_header: boolTrait Implementations§
Source§impl Clone for MdTableCell
impl Clone for MdTableCell
Source§fn clone(&self) -> MdTableCell
fn clone(&self) -> MdTableCell
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MdTableCell
impl Debug for MdTableCell
Source§impl PartialEq for MdTableCell
impl PartialEq for MdTableCell
Source§impl ToHtml for MdTableCell
impl ToHtml for MdTableCell
impl StructuralPartialEq for MdTableCell
Auto Trait Implementations§
impl Freeze for MdTableCell
impl RefUnwindSafe for MdTableCell
impl Send for MdTableCell
impl Sync for MdTableCell
impl Unpin for MdTableCell
impl UnwindSafe for MdTableCell
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