Skip to content

Instantly share code, notes, and snippets.

@durka
Created October 21, 2018 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save durka/93da08aca55ba6a618c6ebe7e377b387 to your computer and use it in GitHub Desktop.
Save durka/93da08aca55ba6a618c6ebe7e377b387 to your computer and use it in GitHub Desktop.
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