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
//! # WSL Plugin Framework
//!
//! This module serves as the main entry point for creating WSL plugins using Rust.
//! It provides error handling, utilities, and the WSL Plugin v1 interface for seamless integration
//! with the Windows Subsystem for Linux (WSL) plugin system.
/// Error handling utilities for WSL plugins.
///
/// This module defines custom error types and result aliases to simplify and standardize
/// error handling throughout the WSL plugin framework.
/// The WSL Plugin v1 interface.
///
/// This module provides the implementation and traits required to define and interact with
/// WSL plugins compatible with the Plugin API version 1.
/// Utility functions for WSL plugin development.
///
/// This module includes helper functions and utilities to facilitate common tasks in WSL plugin creation.
/// The primary error type for the WSL plugin framework.
///
/// Refer to [`error::Error`] for more details.
pub use Error;
/// A specialized result type for operations within the WSL plugin framework.
///
/// Refer to [`error::Result`] for more details.
pub use Result;
/// The core interface for WSL plugins.
///
/// Refer to [`wsl_plugin_v1::WSLPluginV1`] for more details.
pub use WSLPluginV1;
/// A utility function to create a plugin with a specified required version.
///
/// Refer to [`utils::create_plugin_with_required_version`] for more details.
pub use create_plugin_with_required_version;