pub struct ColumnPinningState {
pub left: Vec<Arc<str>>,
pub right: Vec<Arc<str>>,
}Expand description
TanStack-compatible column pinning state.
Fields§
§left: Vec<Arc<str>>§right: Vec<Arc<str>>Trait Implementations§
Source§impl Clone for ColumnPinningState
impl Clone for ColumnPinningState
Source§fn clone(&self) -> ColumnPinningState
fn clone(&self) -> ColumnPinningState
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 ColumnPinningState
impl Debug for ColumnPinningState
Source§impl Default for ColumnPinningState
impl Default for ColumnPinningState
Source§fn default() -> ColumnPinningState
fn default() -> ColumnPinningState
Returns the “default value” for a type. Read more
Source§impl PartialEq for ColumnPinningState
impl PartialEq for ColumnPinningState
impl Eq for ColumnPinningState
impl StructuralPartialEq for ColumnPinningState
Auto Trait Implementations§
impl Freeze for ColumnPinningState
impl RefUnwindSafe for ColumnPinningState
impl Send for ColumnPinningState
impl Sync for ColumnPinningState
impl Unpin for ColumnPinningState
impl UnsafeUnpin for ColumnPinningState
impl UnwindSafe for ColumnPinningState
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