Adjust the description of Type once more

This commit is contained in:
Ivan Ukhov 2015-08-01 17:50:06 -04:00
parent 25cce673bb
commit d6a8437c51

View File

@ -115,15 +115,15 @@ pub type Result<T> = std::result::Result<T, Error>;
/// A data type.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Type {
/// Binary data.
/// The binary type.
Blob,
/// A 64-bit floating-point number.
/// The floating-point type (64-bit).
Float,
/// A 64-bit signed integer.
/// The integer type (64-bit, signed).
Integer,
/// An absence of a value.
/// The null type.
Null,
/// A string.
/// The string type.
String,
}