use lief_ffi as ffi;usesuper::PEB;usecrate::common::into_optional;/// This structure exposes Windows-specific API for the current process.
pubstructProcess{}implProcess{/// Return an interface over the internal Process Environment Block (PEB)
/// of the current process.
pubfnpeb()->Option<PEB>{into_optional(ffi::runtime_windows_Process::peb())}}