fernfs 0.1.5

A Rust NFS Server implementation
Documentation
1
2
3
4
5
6
7
8
9
//! Module for NFSv4 protocol implementation.
//! Provides functionality for working with NFS version 4 protocol context and operations.

#[derive(Default)]
/// Represents the context for NFSv4 operations.
/// Contains necessary state and configuration for NFSv4 protocol handling.
pub struct NFSv4Context {
    // TODO: find out what should be here
}