pub fn set(new: SymbolSet)
Expand description

Set the current SymbolSet

Also see symbols::current.

Example

use requestty::symbols;

symbols::set(symbols::ASCII);
assert_eq!(symbols::current(), symbols::ASCII);