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
/*
* @Author: Jerry.Yang
* @Date: 2024-11-13 10:46:06
* @LastEditors: Jerry.Yang
* @LastEditTime: 2025-02-06 16:38:17
* @Description: operation name clb
*/
/// Enum representing the operation names related to the CLB (Cloud Load Balancer) service.
/// This enum provides a type - safe way to define and refer to different operations that can be
/// performed on the CLB service. The `Debug` derive allows for easy debugging by providing
/// a default implementation of the `fmt::Debug` trait, enabling the enum variants to be printed
/// in a human - readable format. The `Clone` derive allows creating copies of the enum values.
/// Implementation of the `ToString` trait for the `OperationNameClb` enum.
/// This implementation allows converting an instance of `OperationNameClb` into a string representation.
/// This is useful when the operation name needs to be passed as a parameter in an API call or logged.