pub struct CorrectionMap {
pub sets: HashMap<u32, CorrectionSet>,
}Expand description
Lookup a set and a binding for a list of CorrectionType.
In order, insert a new variable for each, see CorrectionType for what type of object should
be inserted for each variant.
Fields§
§sets: HashMap<u32, CorrectionSet>Trait Implementations§
Source§impl Clone for CorrectionMap
impl Clone for CorrectionMap
Source§fn clone(&self) -> CorrectionMap
fn clone(&self) -> CorrectionMap
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CorrectionMap
impl Debug for CorrectionMap
Source§impl Default for CorrectionMap
impl Default for CorrectionMap
Source§fn default() -> CorrectionMap
fn default() -> CorrectionMap
Returns the “default value” for a type. Read more
Source§impl PartialEq for CorrectionMap
impl PartialEq for CorrectionMap
impl Eq for CorrectionMap
impl StructuralPartialEq for CorrectionMap
Auto Trait Implementations§
impl Freeze for CorrectionMap
impl RefUnwindSafe for CorrectionMap
impl Send for CorrectionMap
impl Sync for CorrectionMap
impl Unpin for CorrectionMap
impl UnwindSafe for CorrectionMap
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