pub enum MultiHeaderCell {
Underscore {
span: Span,
},
Variant {
axis: Option<Spanned<IndexName>>,
variant: Spanned<IndexVariantName>,
span: Span,
},
}Expand description
One cell of a multi-decl header row.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MultiHeaderCell
impl Clone for MultiHeaderCell
Source§fn clone(&self) -> MultiHeaderCell
fn clone(&self) -> MultiHeaderCell
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 MultiHeaderCell
impl Debug for MultiHeaderCell
Source§impl FormatEquivalent for MultiHeaderCell
impl FormatEquivalent for MultiHeaderCell
Source§fn format_equivalent(&self, other: &Self) -> bool
fn format_equivalent(&self, other: &Self) -> bool
Returns
true if self and other are equivalent up to formatting.Auto Trait Implementations§
impl Freeze for MultiHeaderCell
impl RefUnwindSafe for MultiHeaderCell
impl Send for MultiHeaderCell
impl Sync for MultiHeaderCell
impl Unpin for MultiHeaderCell
impl UnsafeUnpin for MultiHeaderCell
impl UnwindSafe for MultiHeaderCell
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