Macro re_log_types::entity_path
source · macro_rules! entity_path { ($($part: expr),* $(,)?) => { ... }; }
Expand description
Build an EntityPath
from parts that are not escaped:
let path: EntityPath = entity_path!("world", 42, "my image!");
assert_eq!(path, EntityPath::parse_strict(r"world/42/my\ image\!").unwrap());