//! FUSE (Filesystem in Userspace) adapter for LCPFS.
//!
//! This module provides a FUSE interface to mount LCPFS pools as regular
//! Linux filesystems. It translates FUSE callbacks to LCPFS Pool operations.
//!
//! # Usage
//!
//! ```bash
//! # Mount an LCPFS pool
//! lcpfs-mount /dev/sda1 /mnt/data
//!
//! # Use it like any filesystem
//! ls /mnt/data
//! echo "hello" > /mnt/data/test.txt
//!
//! # Unmount
//! fusermount -u /mnt/data
//! ```
//!
//! # Requirements
//!
//! - Linux with FUSE support (most modern distributions)
//! - `fuse3` package installed
//! - Root or appropriate permissions for mounting
pub use *;