api types: BackupNamespace: remove unused, commented out code

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-05-16 09:13:00 +02:00
parent 456456483e
commit 1f2126fd7c
1 changed files with 0 additions and 38 deletions

View File

@ -507,44 +507,6 @@ impl BackupNamespace {
Ok(this)
}
/*
/// Try to parse a file system path (where each sub-namespace is separated by an `ns`
/// subdirectory) into a valid namespace.
pub fn from_path<T: AsRef<Path>>(path: T) -> Result<Self, Error> {
use std::path::Component;
let mut this = Self::root();
let mut next_is_ns = true;
for component in path.as_ref().components() {
match component {
Component::Normal(component) if next_is_ns => {
if component.to_str() != Some("ns") {
bail!("invalid component in path: {:?}", component);
}
next_is_ns = false;
}
Component::Normal(component) => {
this.push(
component
.to_str()
.ok_or_else(|| {
format_err!("invalid component in path: {:?}", component)
})?
.to_string(),
)?;
next_is_ns = true;
}
Component::RootDir => {
next_is_ns = true;
}
_ => bail!("invalid component in path: {:?}", component.as_os_str()),
}
}
Ok(this)
}
*/
/// Try to parse a file path string (where each sub-namespace is separated by an `ns`
/// subdirectory) into a valid namespace.
pub fn from_path(mut path: &str) -> Result<Self, Error> {