pub struct TableDebugIds {
pub header_row_test_id: Option<Arc<str>>,
pub header_cell_test_id_prefix: Option<Arc<str>>,
pub row_test_id_prefix: Option<Arc<str>>,
}Expand description
Debug/test-only anchors for virtualized table harnesses.
These ids are intended for scripted diagnostics and geometry assertions:
header_row_test_idtargets the fixed header viewport row.header_cell_test_id_prefixtargets table-owned header cell layout wrappers.row_test_id_prefixtargets table-owned body row / cell layout wrappers.
Fields§
§header_row_test_id: Option<Arc<str>>§header_cell_test_id_prefix: Option<Arc<str>>§row_test_id_prefix: Option<Arc<str>>Trait Implementations§
Source§impl Clone for TableDebugIds
impl Clone for TableDebugIds
Source§fn clone(&self) -> TableDebugIds
fn clone(&self) -> TableDebugIds
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 TableDebugIds
impl Debug for TableDebugIds
Source§impl Default for TableDebugIds
impl Default for TableDebugIds
Source§fn default() -> TableDebugIds
fn default() -> TableDebugIds
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableDebugIds
impl RefUnwindSafe for TableDebugIds
impl Send for TableDebugIds
impl Sync for TableDebugIds
impl Unpin for TableDebugIds
impl UnsafeUnpin for TableDebugIds
impl UnwindSafe for TableDebugIds
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