macro_rules! entity_path_vec {
() => { ... };
($($part: expr),* $(,)?) => { ... };
}Expand description
Build a Vec<EntityPathPart>:
let parts: Vec<EntityPathPart> = entity_path_vec!("foo", 42, "my image!");macro_rules! entity_path_vec {
() => { ... };
($($part: expr),* $(,)?) => { ... };
}Build a Vec<EntityPathPart>:
let parts: Vec<EntityPathPart> = entity_path_vec!("foo", 42, "my image!");