bernardo-tui 0.2.7

A keyboard-only, distraction-free TUI widget library
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, Error)]
pub enum SearchError {
    #[error("Unsupported query type (in given context): {details}")]
    UnsupporedQueryType { details: &'static str },
    #[error("Malformed query: {details}")]
    MalformedQuery { details: &'static str },
}