Document modules
This commit is contained in:
parent
410359e329
commit
e37e7088d9
2
error.rs
2
error.rs
@ -1,7 +1,9 @@
|
||||
//! Postgres errors
|
||||
|
||||
macro_rules! make_errors(
|
||||
($($code:pat => $error:ident),+) => (
|
||||
// TODO: Get rid of this module when mozilla/rust#4375 is fixed
|
||||
/// A module to get around issues with macro expansion
|
||||
pub mod hack {
|
||||
/// SQLSTATE error codes
|
||||
#[deriving(ToStr, Eq)]
|
||||
|
2
pool.rs
2
pool.rs
@ -1,3 +1,5 @@
|
||||
//! A simple connection pool
|
||||
|
||||
extern mod extra;
|
||||
|
||||
use extra::arc::MutexArc;
|
||||
|
Loading…
Reference in New Issue
Block a user