1 2 3 4 5 6 7 8 9 10
use alloc::borrow::ToOwned; use alloc::string::String; #[must_use] pub fn strip_quotes(raw: &str) -> String { let mut chars = raw.chars(); chars.next(); chars.next_back(); chars.as_str().to_owned() }