Trait windows_metadata::AsRow
source · pub trait AsRow: Copy {
const TABLE: usize;
Show 13 methods
// Required methods
fn to_row(&self) -> Row;
fn from_row(row: Row) -> Self;
// Provided methods
fn file(&self) -> &'static File { ... }
fn reader(&self) -> &'static Reader { ... }
fn index(&self) -> usize { ... }
fn next(&self) -> Self { ... }
fn usize(&self, column: usize) -> usize { ... }
fn str(&self, column: usize) -> &'static str { ... }
fn row(&self, column: usize) -> Row { ... }
fn decode<T: Decode>(&self, column: usize) -> T { ... }
fn blob(&self, column: usize) -> Blob { ... }
fn list<R: AsRow>(&self, column: usize) -> RowIterator<R> ⓘ { ... }
fn equal_range<L: AsRow>(
&self,
column: usize,
value: usize
) -> RowIterator<L> ⓘ { ... }
}
Required Associated Constants§
Required Methods§
Provided Methods§
fn file(&self) -> &'static File
fn reader(&self) -> &'static Reader
fn index(&self) -> usize
fn next(&self) -> Self
fn usize(&self, column: usize) -> usize
fn str(&self, column: usize) -> &'static str
fn row(&self, column: usize) -> Row
fn decode<T: Decode>(&self, column: usize) -> T
fn blob(&self, column: usize) -> Blob
fn list<R: AsRow>(&self, column: usize) -> RowIterator<R> ⓘ
fn equal_range<L: AsRow>(&self, column: usize, value: usize) -> RowIterator<L> ⓘ
Object Safety§
This trait is not object safe.