//! Data-only type for ownership information of a filesystem path.
//! Centralized under `crate::types` for cross-layer reuse.
/// Typed representation of ownership information for a filesystem path.
/// Centralized under `crate::types` for cross-layer reuse.
#[derive(Clone, Debug)]pubstructOwnershipInfo{/// User ID of the owner
pubuid:u32,
/// Group ID of the owner
pubgid:u32,
/// Package name associated with the ownership
pubpkg: String,
}