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
pub struct CustomRespCommands;
impl CustomRespCommands {
/// libs/server/Custom/CustomRespCommands.cs:TryTransactionProc
pub fn try_transaction_proc() -> bool {
false
}
/// libs/server/Custom/CustomRespCommands.cs:RunCustomTxnProcAtReplica
pub fn run_custom_txn_proc_at_replica() -> bool {
false
}
/// libs/server/Custom/CustomRespCommands.cs:TryCustomProcedure
pub fn try_custom_procedure() -> bool {
false
}
/// libs/server/Custom/CustomRespCommands.cs:TryCustomRawStringCommand
pub fn try_custom_raw_string_command() -> bool {
false
}
/// libs/server/Custom/CustomRespCommands.cs:TryCustomObjectCommand
pub fn try_custom_object_command() -> bool {
false
}
/// libs/server/Custom/CustomRespCommands.cs:ParseCustomRawStringCommand
pub fn parse_custom_raw_string_command(args: &[&[u8]]) -> bool {
!args.is_empty()
}
/// libs/server/Custom/CustomRespCommands.cs:ParseCustomObjectCommand
pub fn parse_custom_object_command(args: &[&[u8]]) -> bool {
!args.is_empty()
}
/// libs/server/Custom/CustomRespCommands.cs:InvokeCustomRawStringCommand
pub fn invoke_custom_raw_string_command() -> bool {
false
}
/// libs/server/Custom/CustomRespCommands.cs:InvokeCustomObjectCommand
pub fn invoke_custom_object_command() -> bool {
false
}
}