pub struct MarkdownTableCell {
pub source: SourceRange,
pub content: Vec<MarkdownInline>,
}Expand description
One structural table cell.
Fields§
§source: SourceRange§content: Vec<MarkdownInline>Trait Implementations§
Source§impl Clone for MarkdownTableCell
impl Clone for MarkdownTableCell
Source§fn clone(&self) -> MarkdownTableCell
fn clone(&self) -> MarkdownTableCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MarkdownTableCell
impl Debug for MarkdownTableCell
Source§impl<'de> Deserialize<'de> for MarkdownTableCell
impl<'de> Deserialize<'de> for MarkdownTableCell
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MarkdownTableCell
Source§impl PartialEq for MarkdownTableCell
impl PartialEq for MarkdownTableCell
Source§impl Serialize for MarkdownTableCell
impl Serialize for MarkdownTableCell
impl StructuralPartialEq for MarkdownTableCell
Auto Trait Implementations§
impl Freeze for MarkdownTableCell
impl RefUnwindSafe for MarkdownTableCell
impl Send for MarkdownTableCell
impl Sync for MarkdownTableCell
impl Unpin for MarkdownTableCell
impl UnsafeUnpin for MarkdownTableCell
impl UnwindSafe for MarkdownTableCell
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