1 2 3 4 5 6 7 8 9 10
use dfir_windows_types::Guid; use crate::cache::RecordId; #[derive(Debug, Copy, Clone)] pub enum EntryId { Id(RecordId), Rid(u32), Guid(Guid), }