{"id":58659,"library":"fuser","title":"Fuser","description":"Filesystem in Userspace (FUSE) for Rust.","status":"active","version":"0.17.0","language":"rust","source_language":null,"source_url":"https://github.com/cberner/fuser","tags":["fuse","filesystem","userspace"],"install":[{"cmd":"# Cargo.toml\n[dependencies]\nfuser = \"0.17.0\"","lang":"toml","label":"Cargo.toml"},{"cmd":"cargo add fuser","lang":"bash","label":"cargo add"}],"dependencies":[],"imports":[{"symbol":"Filesystem","correct":"use fuser::Filesystem;"}],"quickstart":{"code":"use fuser::{Filesystem, MountOption, Request, ReplyEmpty};\nuse std::ffi::OsStr;\n\nstruct MyFS;\n\nimpl Filesystem for MyFS {\n    fn init(&mut self, _req: &Request, _config: &mut fuser::Config<'_>) -> Result<(), libc::c_int> {\n        Ok(())\n    }\n}\n\nfn main() -> Result<(), Box<dyn std::error::Error>> {\n    let mountpoint = \"/tmp/mount\";\n    fuser::mount2(MyFS, mountpoint, &[MountOption::AutoUnmount])?;\n    Ok(())\n}","lang":"rust","description":"Mounts a minimal FUSE filesystem at /tmp/mount."},"warnings":[{"fix":"Run with sudo or add user to fuse group.","message":"Requires FUSE kernel module and appropriate permissions (often root).","severity":"gotcha","affected_versions":">=0.17.0"}],"env_vars":null,"search_vec":"'filesystem':2,9 'fuse':5,8 'fuser':1 'rust':7 'userspac':4,10","created_at":"2026-06-16T16:33:45.921193+00:00","updated_at":"2026-06-16T16:33:45.921193+00:00","problems":[],"ecosystem":"crates","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":null,"cli_version":null,"type":"library","homepage":"https://github.com/cberner/fuser","github":"https://github.com/cberner/fuser","docs":"https://docs.rs/fuser/","changelog":null,"pypi":null,"npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["other"],"base_url":null,"auth_type":null,"provenance":{"verified_status":null,"verified_at":null,"last_verified":"2026-06-16","next_check":"2026-12-13","install_tag":null}}