#error #feedback #string #formatted #text

error_feedback

错误反馈字符串

1 个不稳定版本

0.1.0 2022 年 11 月 23 日

#17#errors

MIT/Apache 许可

7KB
95 代码行

错误反馈

错误反馈的格式化字符串

pub enum Feedback{ Info, Warning, Error }

#[test]
fn t001_underline() {
    let s = justify("Hello Goonies!".to_string(), 40, Justify::Center);
    underline_string(s.clone());
    print!("\n");
    let len = s.clone().len();

    assert_eq!(len, 40);
}

#[test]
fn t002_justify() {
    let s = justify("1.5y".to_string(), 7, Justify::Right);
    assert_eq!(s.len(), 7);
}

依赖项

~175KB