From c7a474c7253233ce1117ae4af5a5c1fcc4b4e7f4 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 15 Apr 2022 20:00:55 +0200 Subject: [PATCH] filetracker: make FileChunk private --- rust/src/filetracker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/src/filetracker.rs b/rust/src/filetracker.rs index f9a5c83be3..48b810b112 100644 --- a/rust/src/filetracker.rs +++ b/rust/src/filetracker.rs @@ -34,7 +34,7 @@ use std::collections::hash_map::Entry::{Occupied, Vacant}; use crate::filecontainer::*; #[derive(Debug)] -pub struct FileChunk { +struct FileChunk { contains_gap: bool, chunk: Vec, }