perspective 1.9.0

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2018, the Perspective Authors.
//
// This file is part of the Perspective library, distributed under the terms
// of the Apache License 2.0.  The full license can be found in the LICENSE
// file.

//! A collection of (de-)serializable structs which capture the application
//! state, suitable for persistence, history, etc. features.

mod aggregates;
mod column_type;
mod datetime_column_style;
mod filters;
mod number_column_style;
mod sort;
mod string_column_style;
mod view_config;
mod viewer_config;

pub use aggregates::*;
pub use column_type::*;
pub use datetime_column_style::*;
pub use filters::*;
pub use number_column_style::*;
pub use sort::*;
pub use string_column_style::*;
pub use view_config::*;
pub use viewer_config::*;