use fmt;
/// A SQL identifier (table name, column name, etc.).
///
/// Wraps a string-like value. When serialized, the identifier is quoted to
/// avoid conflicts with SQL reserved words.
///
/// # Example
///
/// ```
/// use toasty_sql::stmt::Ident;
///
/// let id = Ident::from("users");
/// assert_eq!(id.to_string(), "users");
/// ```
;