Created
October 21, 2018 23:23
-
-
Save durka/93da08aca55ba6a618c6ebe7e377b387 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn toggle_between_A_and_B_while_keeping_value(&mut self) { | |
*self = match self { | |
E::A { value } => { E::B { value: mem::replace(value, S::dummy()) } } | |
E::B { value } => { E::A { value: mem::replace(value, S::dummy()) } } | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment