logparse-pretty-print 0.1.0

pretty print tree
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("readme.md")]

use crate::{PrettyBuilder, PrettyPrint, PrettyProvider, PrettyTree};
use alloc::vec::Vec;
use core::ops::AddAssign;

mod hard_block;
mod k_and_r_bracket;
mod sequence;
mod soft_block;
// mod affixes;

pub use self::{hard_block::HardBlock, k_and_r_bracket::KAndRBracket, sequence::PrettySequence, soft_block::SoftBlock};