You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postsack/src/model/types/loading_state.rs

9 lines
231 B
Rust

use crate::database::query_result::QueryRow;
/// Is a individual row/item being loaded or already loaded.
/// Used in a cache to improve the loading of data for the UI.
pub enum LoadingState {
Loaded(QueryRow),
Loading,
}