docs: reference rust

This commit is contained in:
dingbo 2022-06-17 09:32:32 +08:00 committed by gccgdb1234
parent 5837c141c9
commit 5407ea7895
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ The [Taos] structure is the connection manager in [libtaos] and provides two mai
Column information is stored using [ColumnMeta].
``rust
```rust
let cols = &q.column_meta;
for col in cols {
println!("name: {}, type: {:?} , bytes: {}", col.name, col.type_, col.bytes);