Document State

This commit is contained in:
Ivan Ukhov 2015-06-19 13:03:54 -04:00
parent 4f488e2545
commit 28929e8f1b

View File

@ -13,8 +13,10 @@ pub struct Statement<'l> {
/// A state of a prepared statement.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum State {
Done,
/// There is a row available for reading.
Row,
/// There is nothing else to read.
Done,
}
/// A parameter of a prepared statement.