Skip to content

Instantly share code, notes, and snippets.

@bowrocker
Created December 12, 2019 00:08
Show Gist options
  • Save bowrocker/8357835c654c029e8378ff511836d54b to your computer and use it in GitHub Desktop.
Save bowrocker/8357835c654c029e8378ff511836d54b to your computer and use it in GitHub Desktop.
connection_data.connections.retain(|pair| match pair {
ConnectionKeyPair((_key, Some(mut conn))) => conn.is_valid(),
ConnectionKeyPair((_key, None)) => {
warn!(log, "found malformed connection");
false
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment