zvariant/type/
paths.rs

1use crate::{static_str_type, Signature, 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);