nfs-rs 0.3.0

An asynchronous, pure Rust client library for NFSv3 and NFSv4.1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Auto-generated NFSv4.1 XDR types (RFC 5661).
//!
//! Generated by `fastxdr` from `src/nfs41/xdr/nfs4.x` during `cargo build`.
//! **Do not edit directly.**
//!
//! Re-exports are intentionally broad — many types are used only by specific
//! sub-modules (layout, delegation, state) that may not yet be fully wired in.

#[allow(unused, non_camel_case_types, dead_code, clippy::all, clippy::pedantic)]
mod nfs4_generated {
    include!(concat!(env!("OUT_DIR"), "/nfs4_xdr.rs"));
}

// Only nfsstat4 is used by the current hand-rolled encoder/decoder.
// Other types are re-exported for future use when we migrate to generated decoders.
#[allow(unused_imports)]
pub use nfs4_generated::xdr::nfsstat4;