1use serde::{Deserialize, Serialize};
23#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
4pub struct SetTraceParams {
5/// The new value that should be assigned to the trace setting.
6pub value: TraceValue,
7}
89/// A TraceValue represents the level of verbosity with which the server systematically
10/// reports its execution trace using `LogTrace` notifications.
11///
12/// The initial trace value is set by the client at initialization and can be modified
13/// later using the `SetTrace` notification.
14#[derive(Debug, Eq, PartialEq, Clone, Copy, Deserialize, Serialize, Default)]
15#[serde(rename_all = "camelCase")]
16pub enum TraceValue {
17/// The server should not send any `$/logTrace` notification
18#[default]
19Off,
20/// The server should not add the 'verbose' field in the `LogTraceParams`
21Messages,
22 Verbose,
23}
2425#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
26#[serde(rename_all = "camelCase")]
27pub struct LogTraceParams {
28/// The message to be logged.
29pub message: String,
30/// Additional information that can be computed if the `trace` configuration
31 /// is set to `'verbose'`
32#[serde(skip_serializing_if = "Option::is_none")]
33pub verbose: Option<String>,
34}
3536#[cfg(test)]
37mod tests {
38use super::*;
39use crate::tests::test_serialization;
4041#[test]
42fn test_set_trace_params() {
43 test_serialization(
44&SetTraceParams {
45 value: TraceValue::Off,
46 },
47r#"{"value":"off"}"#,
48 );
49 }
5051#[test]
52fn test_log_trace_params() {
53 test_serialization(
54&LogTraceParams {
55 message: "message".into(),
56 verbose: None,
57 },
58r#"{"message":"message"}"#,
59 );
6061 test_serialization(
62&LogTraceParams {
63 message: "message".into(),
64 verbose: Some("verbose".into()),
65 },
66r#"{"message":"message","verbose":"verbose"}"#,
67 );
68 }
6970#[test]
71fn test_trace_value() {
72 test_serialization(
73&vec![TraceValue::Off, TraceValue::Messages, TraceValue::Verbose],
74r#"["off","messages","verbose"]"#,
75 );
76 }
77}