opendal/services/sled/
config.rs

1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements.  See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership.  The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License.  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,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied.  See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18use std::fmt::Debug;
19use std::fmt::Formatter;
20
21use super::backend::SledBuilder;
22use serde::Deserialize;
23use serde::Serialize;
24
25/// Config for Sled services support.
26#[derive(Default, Serialize, Deserialize, Clone, PartialEq, Eq)]
27#[serde(default)]
28#[non_exhaustive]
29pub struct SledConfig {
30    /// That path to the sled data directory.
31    pub datadir: Option<String>,
32    /// The root for sled.
33    pub root: Option<String>,
34    /// The tree for sled.
35    pub tree: Option<String>,
36}
37
38impl Debug for SledConfig {
39    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
40        f.debug_struct("SledConfig")
41            .field("datadir", &self.datadir)
42            .field("root", &self.root)
43            .field("tree", &self.tree)
44            .finish()
45    }
46}
47
48impl crate::Configurator for SledConfig {
49    type Builder = SledBuilder;
50    fn into_builder(self) -> Self::Builder {
51        SledBuilder { config: self }
52    }
53}