Function strung::config::set_static

source ·
pub fn set_static(pre: &'static str, post: &'static str)
Expand description

Quickly change STRUNG_PRE and STRUNG_POST globally.

Use anywhere within the runtime:

use strung::prelude::*;
fn main(){
    strung::set_static("{","}");
    // ...
}
// ...