refactor: remove unused struct+impl ListItem

This commit is contained in:
Muhammad Nauman Raza 2024-05-28 20:54:39 +01:00
parent bb4b309ad9
commit 023e9237ba
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -8,11 +8,6 @@ use crate::api::SearchResult;
/// Application result type.
pub type AppResult<T> = std::result::Result<T, Box<dyn error::Error>>;
struct ListItem {
title: String,
released: String,
}
pub struct ResultList {
pub state: ListState,
pub items: Vec<SearchResult>,
@ -54,15 +49,6 @@ impl ResultList {
}
}
impl ListItem {
fn new(title: &str, released: &str) -> Self {
Self {
title: title.to_string(),
released: released.to_string(),
}
}
}
/// Application state
pub struct App {
/// Current value of the input box