pub enum RestyleTable<T, N>{
ModifyName {
name: Option<Dim<String>>,
},
ModifyVisible {
visible: Option<Dim<Visible>>,
},
ModifyColumnOrder {
column_order: Option<Dim<Vec<usize>>>,
},
ModifyColumnWidth {
column_width: Option<Dim<f64>>,
},
ModifyHeader {
header: Option<Dim<Header<T>>>,
},
ModifyCells {
cells: Option<Dim<Cells<N>>>,
},
}
Variants§
Trait Implementations§
Source§impl<T, N> Clone for RestyleTable<T, N>
impl<T, N> Clone for RestyleTable<T, N>
Source§fn clone(&self) -> RestyleTable<T, N>
fn clone(&self) -> RestyleTable<T, N>
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<T, N> Serialize for RestyleTable<T, N>
impl<T, N> Serialize for RestyleTable<T, N>
impl<T, N> Restyle for RestyleTable<T, N>
Auto Trait Implementations§
impl<T, N> Freeze for RestyleTable<T, N>
impl<T, N> !RefUnwindSafe for RestyleTable<T, N>
impl<T, N> Send for RestyleTable<T, N>
impl<T, N> Sync for RestyleTable<T, N>
impl<T, N> Unpin for RestyleTable<T, N>
impl<T, N> !UnwindSafe for RestyleTable<T, N>
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