Remove a few outdated TODOs

This commit is contained in:
Ryan Leckey 2019-08-07 22:50:52 -07:00
parent 6fb425129e
commit 89d9d02624
3 changed files with 0 additions and 6 deletions

View File

@ -1,7 +1,5 @@
use super::{BufMut, Encode};
// TODO: Separate into two structs, ClosePortal and CloseStatement (?)
#[repr(u8)]
pub enum CloseKind {
PreparedStatement,

View File

@ -1,7 +1,5 @@
use super::{BufMut, Encode};
// TODO: Separate into two structs, DescribePortal and DescribeStatement (?)
#[repr(u8)]
pub enum DescribeKind {
PreparedStatement,

View File

@ -1,7 +1,5 @@
use crate::backend::Backend;
// TODO: Does [AsSql] need to be generic over back-end ?
pub trait SqlType<B>
where
B: Backend,