Macro scylla_rs::rows[][src]

macro_rules! rows {
    (@ common_rows $rows : ident $(< $($t : ident), + >) ?) => { ... };
    (@ common_row $row : ident { $($col_field : ident : $col_type : ty), * }) => { ... };
    (@ common_iter $rows : ident $(< $($t : ident), + >) ?, $row : ident
 { $($col_field : ident : $col_type : ty), * }, $row_into : ty) => { ... };
    (single_row : $rows : ident $(< $($t : ident), + >) ?, row : $row : ident
 { $($col_field : ident : $col_type : ty), * $(,) ? }, row_into : $row_into :
 ty $(,) ?) => { ... };
    (rows : $rows : ident $(< $($t : ident), + >) ?, row : $row : ty, row_into :
 $row_into : ty $(,) ?) => { ... };
    (rows : $rows : ident $(< $($t : ident), + >) ?, row : $row : ident
 { $($col_field : ident : $col_type : ty), * $(,) ? }, row_into : $row_into :
 ty $(,) ?) => { ... };
}
Expand description

The rows macro implements the row decoder.