Skip to content

Instantly share code, notes, and snippets.

@reem
Created July 28, 2015 01:24
Show Gist options
  • Save reem/66414588eb27ae911483 to your computer and use it in GitHub Desktop.
Save reem/66414588eb27ae911483 to your computer and use it in GitHub Desktop.
use postgres::error::{SqlState, Error};
match query() {
Ok(rows) => { .. },
Err(Error::DbError(ref db)) if db.code() == SqlState::UniqueViolation {
},
Err(other) => { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment