We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e984a4 commit 79ba9a0Copy full SHA for 79ba9a0
README.md
@@ -24,7 +24,7 @@ struct Person {
24
id: i32,
25
name: ~str,
26
time_created: Timespec,
27
- data: Option<~[u8]>
+ data: Option<Vec<u8>>
28
}
29
30
fn main() {
@@ -215,7 +215,7 @@ types. The driver currently supports the following conversions:
215
<td>VARCHAR, CHAR(n), TEXT</td>
216
</tr>
217
<tr>
218
- <td>[u8]</td>
+ <td>[u8]/Vec<u8></td>
219
<td>BYTEA</td>
220
221
@@ -247,7 +247,7 @@ types. The driver currently supports the following conversions:
247
<td>BOOL[], BOOL[][], ...</td>
248
249
250
- <td>types::array::ArrayBase<Option<~[u8]>></td>
+ <td>types::array::ArrayBase<Option<Vec<u8>>></td>
251
<td>BYTEA[], BYTEA[][], ...</td>
252
253
0 commit comments