pub unsafe extern "C" fn fuse_fs_new(
op: *const fuse_operations,
op_size: size_t,
user_data: *mut c_void,
) -> *mut fuse_fsExpand description
Create a new fuse filesystem object
This is usually called from the factory of a fuse module to create a new instance of a filesystem.
@param op the filesystem operations @param op_size the size of the fuse_operations structure @param user_data user data supplied in the context during the init() method @return a new filesystem object