zvariant/type/
paths.rs

1use crate::{Signature, Type, static_str_type};
2
3static_str_type!(std::path::Path);
4static_str_type!(std::path::PathBuf);
5
6#[cfg(feature = "camino")]
7static_str_type!(camino::Utf8Path);
8#[cfg(feature = "camino")]
9static_str_type!(camino::Utf8PathBuf);