box_drawing/double.rs
1pub const HORIZONTAL:&str="═";
2pub const VERTICAL:&str="║";
3pub const DOWN_RIGHT:&str="╔";
4pub const DOWN_LEFT:&str="╗";
5pub const UP_RIGHT:&str="╚";
6pub const UP_LEFT:&str="╝";
7pub const VERTICAL_RIGHT:&str="╠";
8pub const VERTICAL_LEFT:&str="╣";
9pub const DOWN_HORIZONTAL:&str="╦";
10pub const UP_HORIZONTAL:&str="╩";
11pub const VERTICAL_HORIZONTAL:&str="╬";