mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
14 lines
244 B
Rust
14 lines
244 B
Rust
use std::{cell::RefCell, collections::VecDeque, rc::Rc};
|
|
|
|
///
|
|
pub enum InternalEvent {
|
|
///
|
|
ConfirmResetFile(String),
|
|
///
|
|
ResetFile(String),
|
|
///
|
|
AddHunk(u64),
|
|
}
|
|
|
|
///
|
|
pub type Queue = Rc<RefCell<VecDeque<InternalEvent>>>;
|