Update README with Vec changes
This commit is contained in:
parent
7e984a4a34
commit
79ba9a0e4e
@ -24,7 +24,7 @@ struct Person {
|
||||
id: i32,
|
||||
name: ~str,
|
||||
time_created: Timespec,
|
||||
data: Option<~[u8]>
|
||||
data: Option<Vec<u8>>
|
||||
}
|
||||
|
||||
fn main() {
|
||||
@ -215,7 +215,7 @@ types. The driver currently supports the following conversions:
|
||||
<td>VARCHAR, CHAR(n), TEXT</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>[u8]</td>
|
||||
<td>[u8]/Vec<u8></td>
|
||||
<td>BYTEA</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -247,7 +247,7 @@ types. The driver currently supports the following conversions:
|
||||
<td>BOOL[], BOOL[][], ...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>types::array::ArrayBase<Option<~[u8]>></td>
|
||||
<td>types::array::ArrayBase<Option<Vec<u8>>></td>
|
||||
<td>BYTEA[], BYTEA[][], ...</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
Loading…
Reference in New Issue
Block a user