pub fn mount(
fs: Box<dyn ForensicFs + Send>,
mountpoint: &Path,
session: Option<Session>,
options: &MountOptions,
) -> Result<()>Expand description
Mount a forensic filesystem via FUSE (or WinFSP on Windows).
This is the main entry point for consumers. Pass a ForensicFs
implementation and a MountOptions, and this dispatches to the
correct platform backend.
On Unix the mount is handled by fuser. On Windows it will be
handled by winfsp-wrs (currently a stub that returns
Unsupported).