json_patch_ext/
macros.rs

1#[macro_export]
2macro_rules! format_ptr {
3    ($str:literal $($args:tt)*) => {
4        json_patch_ext::PointerBuf::parse(&format!($str $($args)*)).expect("pointer parse error")
5    };
6}