Hide trait method

This commit is contained in:
Steven Fackler 2018-12-10 21:15:39 -08:00
parent c23e3e0bda
commit 10a850a527

View File

@ -17,6 +17,7 @@ mod sealed {
///
/// This cannot be implemented outside of this crate.
pub trait RowIndex: Sealed {
#[doc(hidden)]
fn __idx(&self, columns: &[Column]) -> Option<usize>;
}