We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 410359e commit e37e708Copy full SHA for e37e708
3 files changed
error.rs
@@ -1,7 +1,9 @@
1
+//! Postgres errors
2
3
macro_rules! make_errors(
4
($($code:pat => $error:ident),+) => (
5
// TODO: Get rid of this module when mozilla/rust#4375 is fixed
6
+ /// A module to get around issues with macro expansion
7
pub mod hack {
8
/// SQLSTATE error codes
9
#[deriving(ToStr, Eq)]
pool.rs
@@ -1,3 +1,5 @@
+//! A simple connection pool
+
extern mod extra;
use extra::arc::MutexArc;
types.rs
+//! Traits dealing with Postgres data types
use extra::time::Timespec;
0 commit comments