diff --git a/src/row.rs b/src/row.rs index 59edfd8d..a5a22524 100644 --- a/src/row.rs +++ b/src/row.rs @@ -413,3 +413,9 @@ impl IntoIterator for Row { self.data.into_iter() } } + +impl Into> for Row { + fn into(self) -> TokenRow<'static> { + self.data + } +}