summaryrefslogtreecommitdiffstats
path: root/src/types.rs
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-06-07 14:25:33 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-06-07 14:35:41 +0300
commita17f0b4fd44ca9d9a9e81c735ccd96493d8ed0b9 (patch)
tree4f4277ad4f14d0faa2da10eacec3494e386ca102 /src/types.rs
parent9edef4ecd2615b63285da92643ae982202f10ad5 (diff)
listing: rework MailListingTrait
split redraw_list() to redraw_threads_list() and redraw_envelope_list()
Diffstat (limited to 'src/types.rs')
-rw-r--r--src/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.rs b/src/types.rs
index 2a893ab3..27170437 100644
--- a/src/types.rs
+++ b/src/types.rs
@@ -177,7 +177,7 @@ pub mod segment_tree {
#[derive(Default, Debug, Clone)]
pub struct SegmentTree {
- array: SmallVec<[u8; 1024]>,
+ pub array: SmallVec<[u8; 1024]>,
tree: SmallVec<[u8; 1024]>,
}