pub struct WireTableCell {
pub inlines: Vec<WireInline>,
pub colspan: u32,
pub rowspan: u32,
}Expand description
One cell in a WireRow. inlines holds the cell’s content; merge
markers (>>, ^^) are surfaced as colspan / rowspan for downstream
renderers.
Fields§
§inlines: Vec<WireInline>§colspan: u32§rowspan: u32Trait Implementations§
Source§impl Clone for WireTableCell
impl Clone for WireTableCell
Source§fn clone(&self) -> WireTableCell
fn clone(&self) -> WireTableCell
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 WireTableCell
impl Debug for WireTableCell
Source§impl<'de> Deserialize<'de> for WireTableCell
impl<'de> Deserialize<'de> for WireTableCell
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
Source§impl PartialEq for WireTableCell
impl PartialEq for WireTableCell
Source§fn eq(&self, other: &WireTableCell) -> bool
fn eq(&self, other: &WireTableCell) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WireTableCell
impl Serialize for WireTableCell
impl StructuralPartialEq for WireTableCell
Auto Trait Implementations§
impl Freeze for WireTableCell
impl RefUnwindSafe for WireTableCell
impl Send for WireTableCell
impl Sync for WireTableCell
impl Unpin for WireTableCell
impl UnsafeUnpin for WireTableCell
impl UnwindSafe for WireTableCell
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