pub enum TanStackStateError {
InvalidRowSelectionKey {
row_id: String,
},
InvalidExpandedKey {
row_id: String,
},
InvalidRowPinningKey {
row_id: String,
},
UnresolvedRowId {
field: &'static str,
row_id: String,
},
UnresolvedRowKey {
field: &'static str,
row_key: RowKey,
},
InvalidIsResizingColumnValue {
value: Value,
},
}Variants§
InvalidRowSelectionKey
InvalidExpandedKey
InvalidRowPinningKey
UnresolvedRowId
UnresolvedRowKey
InvalidIsResizingColumnValue
Trait Implementations§
Source§impl Clone for TanStackStateError
impl Clone for TanStackStateError
Source§fn clone(&self) -> TanStackStateError
fn clone(&self) -> TanStackStateError
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 TanStackStateError
impl Debug for TanStackStateError
Source§impl Display for TanStackStateError
impl Display for TanStackStateError
Source§impl Error for TanStackStateError
impl Error for TanStackStateError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for TanStackStateError
impl PartialEq for TanStackStateError
impl Eq for TanStackStateError
impl StructuralPartialEq for TanStackStateError
Auto Trait Implementations§
impl Freeze for TanStackStateError
impl RefUnwindSafe for TanStackStateError
impl Send for TanStackStateError
impl Sync for TanStackStateError
impl Unpin for TanStackStateError
impl UnsafeUnpin for TanStackStateError
impl UnwindSafe for TanStackStateError
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