pub enum TableCellItem {
Cell(TableCellElement),
Conditional(ConditionalTableCells),
}Expand description
테이블 셀 콘텐츠 아이템 (셀 또는 조건부)
Variants§
Cell(TableCellElement)
Conditional(ConditionalTableCells)
Trait Implementations§
Source§impl Clone for TableCellItem
impl Clone for TableCellItem
Source§fn clone(&self) -> TableCellItem
fn clone(&self) -> TableCellItem
Returns a duplicate 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 TableCellItem
impl Debug for TableCellItem
Auto Trait Implementations§
impl Freeze for TableCellItem
impl RefUnwindSafe for TableCellItem
impl Send for TableCellItem
impl Sync for TableCellItem
impl Unpin for TableCellItem
impl UnwindSafe for TableCellItem
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