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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/// Represents a message received from the pkl server/process.
// TODO: decide whether to implement deserializing for message or keep the current approach
/*
use serde::{Deserialize, Serialize};
/// Code: 0x102
/// Type: Server Request
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct InitializeResourceReaderRequest {
/// A number identifying this request.
pub request_id: i64,
/// The scheme of the resource to initialize.
pub scheme: String,
}
#[derive(Debug, Deserialize)]
pub struct EvaluatorResponse {
#[serde(rename = "requestId")]
pub request_id: i64,
#[serde(rename = "evaluatorId")]
pub evaluator_id: i64,
}
#[derive(Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
struct ReadResourceRequest {
/// A number identifying this request.
request_id: i64,
/// A number identifying this evaluator.
evaluator_id: i64,
/// The URI of the resource.
uri: String,
}
/// Code: 0x28
///
/// Type: Server Request
///
/// Read a module at the given URI. This message occurs during the evaluation of an import statement or expression (import/import*), when a scheme matches a client module reader.
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
struct ReadModuleRequest {
/// A number identifying this request.
_request_id: i64,
/// A number identifying this evaluator.
_evaluator_id: i64,
/// The URI of the module.
_uri: String,
}
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
struct ListResourcesRequest {
/// A number identifying this request.
_request_id: i64,
/// A number identifying this evaluator.
_evaluator_id: i64,
/// The URI of the module.
_uri: String,
}
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
struct ListModulesRequest {
/// A number identifying this request.
_request_id: i64,
/// A number identifying this evaluator.
_evaluator_id: i64,
/// The URI of the module.
_uri: String,
}
*/