pub struct Table<'a> { /* private fields */ }Implementations
sourceimpl Table<'_>
impl Table<'_>
pub fn name(&self) -> Result<String>
pub fn count_columns(&self) -> Result<i32>
pub fn count_records(&self) -> Result<i32>
pub fn column(&self, entry: i32) -> Result<Column<'_>>
pub fn record(&self, entry: i32) -> Result<Record<'_>>
pub fn iter_columns(&self) -> Result<IterEntries<'_, Column<'_>>>
pub fn iter_records(&self) -> Result<IterEntries<'_, Record<'_>>>
pub fn close(self)
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> !Send for Table<'a>
impl<'a> !Sync for Table<'a>
impl<'a> Unpin for Table<'a>
impl<'a> UnwindSafe for Table<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more