pub struct MatchesLookup(pub HashMap<Match, Match>);
Expand description
A lookup that points some arbitrary match to the key match.
Used to check which key some match belongs to, in order to insert into Matches
.
Tuple Fields§
§0: HashMap<Match, Match>
Auto Trait Implementations§
impl Freeze for MatchesLookup
impl RefUnwindSafe for MatchesLookup
impl Send for MatchesLookup
impl Sync for MatchesLookup
impl Unpin for MatchesLookup
impl UnwindSafe for MatchesLookup
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