pub struct MweTrie {
pub children: HashMap<String, MweTrie>,
pub target: Option<MweTarget>,
}Fields§
§children: HashMap<String, MweTrie>§target: Option<MweTarget>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MweTrie
impl RefUnwindSafe for MweTrie
impl Send for MweTrie
impl Sync for MweTrie
impl Unpin for MweTrie
impl UnwindSafe for MweTrie
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