1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//! # Core Distribution Information
//!
//! This module defines a trait to represent core information about a WSL distribution.
//! It provides methods to retrieve essential details such as the distribution ID, name,
//! and package family name, offering a consistent interface for interacting with WSL distributions.
//!
//! ## Overview
//! The `CoreDistributionInformation` trait is designed to abstract the key properties
//! of a distribution. Implementing this trait allows for seamless integration with systems
//! that need to handle multiple distributions in a consistent manner.
use crate::;
use OsString;
/// A trait representing the core information of a WSL distribution.
///
/// This trait abstracts the common properties of a WSL distribution, such as its unique ID,
/// display name, and package family name (if applicable).