Make field private. It is not used outside the module and it should not be directly accessed anyway

This commit is contained in:
Oli Scherer 2024-07-29 10:17:56 +00:00
parent a6796c10a1
commit 051cc2d768

View file

@ -213,7 +213,7 @@ impl FileDescriptor {
/// The file descriptor table
#[derive(Debug)]
pub struct FdTable {
pub fds: BTreeMap<i32, FileDescriptor>,
fds: BTreeMap<i32, FileDescriptor>,
}
impl VisitProvenance for FdTable {