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
/*
* @Author: Jerry.Yang
* @Date: 2024-10-30 10:50:53
* @LastEditors: Jerry.Yang
* @LastEditTime: 2025-02-06 16:36:49
* @Description: operation http path
*/
/// Enum representing possible HTTP paths that can be used in API operations.
/// This enum provides a type - safe way to specify the HTTP path for an API request.
/// Currently, it only includes the `Default` path, which maps to the root path ("/").
/// The `Debug` derive allows for easy debugging by providing a default implementation
/// of the `fmt::Debug` trait, which enables printing the enum variants in a readable format.
/// The `Clone` derive allows for creating copies of the enum values when needed.
/// Implementation of the `ToString` trait for the `OperationHttpPath` enum.
/// This allows converting an instance of `OperationHttpPath` into a string representation.
/// Implementation of the `Default` trait for the `OperationHttpPath` enum.
/// This provides a default value for the `OperationHttpPath` type.