ntdsextract2 1.2.0

Display contents of Active Directory database files (ntds.dit)
1
2
3
4
5
use crate::cache::Value;

pub trait WithValue<I> {
    fn with_value<T>(&self, index: I, function: impl FnMut(Option<&Value>) -> anyhow::Result<T>) -> anyhow::Result<T>;
}