Spaces:
Runtime error
Runtime error
File size: 301 Bytes
287a0bc | 1 2 3 4 5 6 7 8 9 10 | use serde::Deserialize;
/// The configuration for the custom resource memberlist provider.
/// # Fields
/// - storage_path: The path to use for temporary storage in the segment manager, if needed.
#[derive(Deserialize)]
pub(crate) struct SegmentManagerConfig {
pub(crate) storage_path: String,
}
|