Allow clippy lint in macro output.
This commit is contained in:
parent
51dac3c862
commit
369427b381
@ -124,6 +124,7 @@ impl fmt::Debug for Row {
|
|||||||
struct RowData<'a>(&'a Row);
|
struct RowData<'a>(&'a Row);
|
||||||
|
|
||||||
impl fmt::Debug for RowData<'_> {
|
impl fmt::Debug for RowData<'_> {
|
||||||
|
#[allow(clippy::match_ref_pats)]
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
let mut map = f.debug_map();
|
let mut map = f.debug_map();
|
||||||
for (idx, col) in self.0.columns().iter().enumerate() {
|
for (idx, col) in self.0.columns().iter().enumerate() {
|
||||||
|
Loading…
Reference in New Issue
Block a user