Oh sorry, I tried it out and it's not possible with the crate I mentioned. constcat can be used to produce a new &str usable from const contexts, but not a new string literal.
The only way that comes to mind for doing something similar to what you want is defining a macro which will expand to a string literal. I don't like this approach because it seems a bit messy defining macros just to act as a variable. Maybe others can think of a cleaner approach.
Ah, I also see in this post you were asking the same / similar question and made me realize that if the purpose is for the asm macro, there may be sufficient formatting options provided by that macro itself. Unfortunately I'm not familiar with it but here is the documentation.
@zoey, I think you need to find someone who can explain the answers you're receiving on the forum. Without this I'm afraid you won't be able to make progress.