tideorm 0.9.4

A developer-friendly ORM for Rust with clean, expressive syntax
Documentation
//! Attribute types and casting
//!
//! This module groups custom field types and attribute-casting helpers.
//!
//! Use these types when a plain Rust scalar is not enough for the storage or
//! serialization behavior you need, such as encrypted values, hashes, JSON, or
//! database enums.
//!
//! If a field loads or saves with the wrong representation, this module is the
//! first place to check.
//!
//! Practical split:
//! - use `Encrypted` and `Hashed` when the stored value should not round-trip as plain text
//! - use `DbEnum`, JSON aliases, and collection helpers when the database representation is more complex than a scalar
//! - check `cast` and `defaults` first when a value is being transformed unexpectedly during load or save

mod aliases;
mod cast;
mod collections;
mod db_enum;
mod defaults;
mod encrypted;
mod hashed;
mod timestamps;

pub use aliases::{
    BigIntArray, BoolArray, DateTime, Decimal, FloatArray, IntArray, Json, JsonArray, Jsonb,
    NaiveDate, NaiveDateTime, NaiveTime, Text, TextArray, Utc, Uuid,
};
pub use cast::{AttributeCaster, CastType, CastValue, Castable};
pub use collections::{Collection, CommaSeparated};
pub use db_enum::DbEnum;
pub use defaults::{Accessor, Mutator, WithDefault};
pub use encrypted::Encrypted;
pub use hashed::Hashed;
pub use timestamps::{UnixTimestamp, UnixTimestampMillis};

#[cfg(test)]
pub(crate) use encrypted::encrypted_field_missing_key_error;

#[cfg(test)]
#[path = "../testing/types_tests.rs"]
mod tests;