pub struct TableView<'a, T>where
T: Debug,{ /* private fields */ }
Expand description
View of a table.
Implementations§
Source§impl<'a, T> TableView<'a, T>where
T: Debug,
impl<'a, T> TableView<'a, T>where
T: Debug,
Sourcepub fn has_metadata(&self) -> bool
pub fn has_metadata(&self) -> bool
Determine if the table has metadata.
Sourcepub fn identifier(&self) -> Identifier
pub fn identifier(&self) -> Identifier
Get the identifier.
Sourcepub fn child_count(&self) -> usize
pub fn child_count(&self) -> usize
Get the count of child tables.
Sourcepub fn chunk_count(&self) -> usize
pub fn chunk_count(&self) -> usize
Get the count of chunks in the table.
Trait Implementations§
Source§impl<'a, T> ContentInfo for TableView<'a, T>where
T: Debug,
impl<'a, T> ContentInfo for TableView<'a, T>where
T: Debug,
impl<'a, T> Copy for TableView<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for TableView<'a, T>
impl<'a, T> RefUnwindSafe for TableView<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for TableView<'a, T>where
T: Sync,
impl<'a, T> Sync for TableView<'a, T>where
T: Sync,
impl<'a, T> Unpin for TableView<'a, T>
impl<'a, T> UnwindSafe for TableView<'a, T>where
T: RefUnwindSafe,
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