pub struct ExtendedNfsStorageTransaction {
pub path: Vec<u8>,
pub operation: u32,
pub status: u32,
}Expand description
Extended NFS Storage Transaction - Format (0,2001)
NFS operation transaction details
§XDR Definition (sFlow Discussion)
/* Extended NFS transaction */
/* see RFC 3530 */
/* opaque = flow_data; enterprise = 0; format = 2001 */
struct extended_nfs_storage_transaction {
opaque<> path; /* canonical path to file or directory
associated with operation file handle
UTF8 encoded string */
unsigned int operation; /* NFS operation */
unsigned int status; /* NFS operation status - nfsstat4 */
}Fields§
§path: Vec<u8>Canonical path to file or directory (UTF8 encoded)
operation: u32NFS operation
status: u32NFS operation status (nfsstat4)
Trait Implementations§
Source§impl Clone for ExtendedNfsStorageTransaction
impl Clone for ExtendedNfsStorageTransaction
Source§fn clone(&self) -> ExtendedNfsStorageTransaction
fn clone(&self) -> ExtendedNfsStorageTransaction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ExtendedNfsStorageTransaction
impl PartialEq for ExtendedNfsStorageTransaction
Source§fn eq(&self, other: &ExtendedNfsStorageTransaction) -> bool
fn eq(&self, other: &ExtendedNfsStorageTransaction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExtendedNfsStorageTransaction
impl StructuralPartialEq for ExtendedNfsStorageTransaction
Auto Trait Implementations§
impl Freeze for ExtendedNfsStorageTransaction
impl RefUnwindSafe for ExtendedNfsStorageTransaction
impl Send for ExtendedNfsStorageTransaction
impl Sync for ExtendedNfsStorageTransaction
impl Unpin for ExtendedNfsStorageTransaction
impl UnwindSafe for ExtendedNfsStorageTransaction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more