diff --git a/src/postgres/protocol/close.rs b/src/postgres/protocol/close.rs index 280cb23f..5d5716c6 100644 --- a/src/postgres/protocol/close.rs +++ b/src/postgres/protocol/close.rs @@ -1,7 +1,5 @@ use super::{BufMut, Encode}; -// TODO: Separate into two structs, ClosePortal and CloseStatement (?) - #[repr(u8)] pub enum CloseKind { PreparedStatement, diff --git a/src/postgres/protocol/describe.rs b/src/postgres/protocol/describe.rs index 2638db2e..aae39c16 100644 --- a/src/postgres/protocol/describe.rs +++ b/src/postgres/protocol/describe.rs @@ -1,7 +1,5 @@ use super::{BufMut, Encode}; -// TODO: Separate into two structs, DescribePortal and DescribeStatement (?) - #[repr(u8)] pub enum DescribeKind { PreparedStatement, diff --git a/src/types.rs b/src/types.rs index 6c7b39de..c794e8e3 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,7 +1,5 @@ use crate::backend::Backend; -// TODO: Does [AsSql] need to be generic over back-end ? - pub trait SqlType where B: Backend,