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
use ;
use HashMap;
/// Represents a store request to be sent to the Montycat server from the client side.
///
/// # Fields
/// - `schema: Option<String>` : The schema to be used.
/// - `username: String` : The username for authentication.
/// - `password: String` : The password for authentication.
/// - `keyspace: String` : The keyspace to be used.
/// - `store: String` : The store to be used.
/// - `persistent: bool` : Indicates if the store is persistent.
/// - `distributed: bool` : Indicates if the store is distributed.
/// - `limit_output: HashMap<String, usize>` : Limits for output.
/// - `key: Option<String>` : The key for the operation.
/// - `value: String` : The value for the operation.
/// - `command: String` : The command to be executed.
/// - `expire: u64` : Expiration time for the key.
/// - `bulk_values: Vec<String>` : Bulk values for the operation.
/// - `bulk_keys: Vec<String>` : Bulk keys for the operation.
/// - `bulk_keys_values: HashMap<String, String>` : Bulk key-value pairs for the operation.
/// - `search_criteria: String` : Criteria for searching.
/// - `with_pointers: bool` : Indicates if pointers should be included.
/// - `key_included: bool` : Indicates if the key is included in the response.
/// - `volumes: Vec<String>` : Volumes to be used.
/// - `latest_volume: bool` : Indicates if the latest volume should be used.
/// - `pointers_metadata: bool` : Indicates if pointers metadata should be included.
///
pub