couchbase_core/memdx/mod.rs
1/*
2 *
3 * * Copyright (c) 2025 Couchbase, Inc.
4 * *
5 * * Licensed under the Apache License, Version 2.0 (the "License");
6 * * you may not use this file except in compliance with the License.
7 * * You may obtain a copy of the License at
8 * *
9 * * http://www.apache.org/licenses/LICENSE-2.0
10 * *
11 * * Unless required by applicable law or agreed to in writing, software
12 * * distributed under the License is distributed on an "AS IS" BASIS,
13 * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * * See the License for the specific language governing permissions and
15 * * limitations under the License.
16 *
17 */
18
19pub mod auth_mechanism;
20pub mod client;
21pub mod client_response;
22pub mod codec;
23pub mod connection;
24pub mod datatype;
25pub mod dispatcher;
26pub mod durability_level;
27pub mod error;
28pub mod ext_frame_code;
29pub mod extframe;
30pub mod hello_feature;
31pub mod magic;
32pub mod op_auth_saslauto;
33pub mod op_auth_saslbyname;
34pub mod op_auth_sasloauthbearer;
35pub mod op_auth_saslplain;
36pub mod op_auth_saslscram;
37pub mod op_bootstrap;
38pub mod opcode;
39pub mod ops_core;
40pub mod ops_crud;
41pub mod ops_util;
42pub mod packet;
43pub mod pendingop;
44pub mod request;
45pub mod response;
46pub mod status;
47pub mod subdoc;
48pub mod sync_helpers;