brassfibre 0.2.0

Provides multiple-dtype columner storage, known as DataFrame in pandas/R
Documentation
use std::fmt;
use std::hash::Hash;

use super::Indexer;

// Formatting

impl<U> fmt::Display for Indexer<U>
    where U: Clone + Eq + Hash + fmt::Debug
{
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        return write!(f, "Index({:?})", &self.values);
    }
}

impl<U> fmt::Debug for Indexer<U>
    where U: Clone + Eq + Hash + fmt::Debug
{
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        return write!(f, "Index({:?})", &self.values);
    }
}