[−][src]Trait sqlx::TypeInfo
Provides information about a SQL type for the database driver.
Required methods
fn is_null(&self) -> bool
fn name(&self) -> &str
Returns the database system name of the type. Length specifiers should not be included.
Common type names are VARCHAR, TEXT, or INT. Type names should be uppercase. They
should be a rough approximation of how they are written in SQL in the given database.