pub struct SimpleStringPoolExt {
pub pool: Vec<String>,
}Expand description
A simple string pool that interns unique strings.
Fields§
§pool: Vec<String>All interned strings
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SimpleStringPoolExt
impl RefUnwindSafe for SimpleStringPoolExt
impl Send for SimpleStringPoolExt
impl Sync for SimpleStringPoolExt
impl Unpin for SimpleStringPoolExt
impl UnsafeUnpin for SimpleStringPoolExt
impl UnwindSafe for SimpleStringPoolExt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more