termal_core 5.0.0

This library contains implementation for the termal library
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::fmt::Display;

/// No state when tracking progress. This is the default.
#[derive(Debug, Clone, Copy, Default)]
pub struct NoState;

impl Display for NoState {
    fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        Ok(())
    }
}