Struct windows_gen::Row[][src]

pub struct Row {
    pub row: u32,
    pub table: TableIndex,
    pub file: &'static File,
}

Fields

row: u32table: TableIndexfile: &'static File

Implementations

impl Row[src]

pub fn new(row: u32, table: TableIndex, file: &'static File) -> Self[src]

pub fn u32(&self, column: u32) -> u32[src]

pub fn str(&self, column: u32) -> &'static str[src]

pub fn blob(&self, column: u32) -> Blob[src]

pub fn decode<T: Decode>(&self, column: u32) -> T[src]

pub fn list(&self, column: u32, table: TableIndex) -> impl Iterator<Item = Self>[src]

Trait Implementations

impl Clone for Row[src]

impl Copy for Row[src]

impl Debug for Row[src]

impl Eq for Row[src]

impl Ord for Row[src]

impl PartialEq<Row> for Row[src]

impl PartialOrd<Row> for Row[src]

Auto Trait Implementations

impl RefUnwindSafe for Row

impl Send for Row

impl Sync for Row

impl Unpin for Row

impl UnwindSafe for Row

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.