diff --git a/sqlx-core/src/column.rs b/sqlx-core/src/column.rs index db552324e5..b583e480d1 100644 --- a/sqlx-core/src/column.rs +++ b/sqlx-core/src/column.rs @@ -28,8 +28,6 @@ pub trait Column: 'static + Send + Sync + Debug { /// This trait is implemented for strings which are used to look up a column by name, and for /// `usize` which is used as a positional index into the row. /// -/// This trait is sealed and cannot be implemented for types outside of SQLx. -/// /// [`Row`]: crate::row::Row /// [`Statement`]: crate::statement::Statement /// [`get`]: crate::row::Row::get diff --git a/sqlx-core/src/row.rs b/sqlx-core/src/row.rs index 9fadbf6bd9..6a09fa0d4d 100644 --- a/sqlx-core/src/row.rs +++ b/sqlx-core/src/row.rs @@ -9,8 +9,6 @@ use crate::value::ValueRef; /// Represents a single row from the database. /// -/// This trait is sealed and cannot be implemented for types outside of SQLx. -/// /// [`FromRow`]: crate::row::FromRow /// [`Query::fetch`]: crate::query::Query::fetch pub trait Row: Unpin + Send + Sync + 'static {