//! Implementation of the `NULL` procedure (procedure 0) for MOUNT version 3 protocol
//! as defined in RFC 1813 section 5.2.0
//! <https://datatracker.ietf.org/doc/html/rfc1813#section-5.2.0>.
use Write;
use debug;
use crate;
/// Handles `MOUNTPROC3_NULL` procedure.
///
/// Procedure `NULL` does not do any work. It is made available
/// to allow server response testing and timing.
///
/// # Arguments
///
/// * `xid` - RPC transaction ID
/// * `output` - Output stream for writing the response
///
/// # Returns
///
/// * `Result<(), anyhow::Error>` - Ok(()) on success or an error