/// An abstraction over the different language runtimes (Python, Ruby, etc) that we support
pubtraitProcessType{#[cfg(target_os ="windows")]/// Returns all symbols available in the process
fnwindows_symbols()->Vec<String>;/// A regular expression that matches library filenames for this process type
fnlibrary_regex()->regex::Regex;/// Returns `true` if the given filename looks like a macOS framework, and `false` otherwise
#[cfg(target_os ="macos")]fnis_framework(path:&std::path::Path)->bool;}