elvis 0.3.1

Calling Elvis, is anybody home?
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Elvis column layout
use elvis_core::{derive::Setter, style::MultiColumnStyle, Class, Node};
use elvis_derive::IntoNode;

/// **Homework**: code a New York Times.
#[derive(Default, IntoNode, Setter)]
pub struct MultiColumn {
    /// Column children
    pub children: Vec<Node>,
    /// Column style
    pub style: MultiColumnStyle,
}