Module prelude

Expand description

Re-export common types from the entity

Structs§

BigDecimal
A big decimal type.
ChronoDate
ISO 8601 calendar date without timezone. Allows for every proleptic Gregorian date from Jan 1, 262145 BCE to Dec 31, 262143 CE. Also supports the conversion from ISO 8601 ordinal and week date.
ChronoDateTime
ISO 8601 combined date and time without timezone.
ChronoTime
ISO 8601 time without timezone. Allows for the nanosecond precision and optional leap second representation.
ColumnDef
Defines a Column for an Entity
ColumnFromStrErr
Error during impl FromStr for Entity::Column
Date
ISO 8601 calendar date without timezone. Allows for every proleptic Gregorian date from Jan 1, 262145 BCE to Dec 31, 262143 CE. Also supports the conversion from ISO 8601 ordinal and week date.
DateTime
ISO 8601 combined date and time without timezone.
Decimal
Decimal represents a 128 bit representation of a fixed-precision decimal number. The finite set of values of type Decimal are of the form m / 10e, where m is an integer such that -296 < m < 296, and e is an integer between 0 and 28 inclusive.
Expr
Helper to build a SimpleExpr.
QueryResult
Defines the result of a query operation on a Model
RcOrArc
A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
RelationDef
Defines a relationship
SeaRc
Select
Defines a structure to perform select operations
SqlxSqliteError
Time
ISO 8601 time without timezone. Allows for the nanosecond precision and optional leap second representation.
TimeDate
Date in the proleptic Gregorian calendar.
TimeDateTime
Combined date and time.
TimeDateTimeWithTimeZone
A PrimitiveDateTime with a UtcOffset.
TimeTime
The clock time within a given date. Nanosecond precision.
Uuid
A Universally Unique Identifier (UUID).

Enums§

ColumnType
All column types
ConnAcquireErr
Connection Acquire error
DatabaseConnection
Handle a database connection depending on the backend enabled by the feature flags. This creates a database pool. This will be Clone unless the feature flag mock is enabled.
DbErr
An error from unsuccessful database operations
Json
Represents any valid JSON value.
RuntimeErr
Runtime error
SqlErr
An error from unsuccessful SQL query
SqlxError
Represents all the ways a method can fail within SQLx.
StringLen
Length for var-char/binary; default to 255
TryGetError
An error from trying to get a row from a Model
Value
Value variants

Traits§

ActiveEnum
A Rust representation of enum defined in database.
ActiveModelBehavior
A Trait for overriding the ActiveModel behavior
ActiveModelTrait
A Trait for ActiveModel to perform Create, Update or Delete operation. The type must also implement the EntityTrait. See module level docs crate::entity for a full example
ColumnTrait
API for working with a Column. Mostly a wrapper of the identically named methods in sea_query::Expr
ColumnTypeTrait
SeaORM’s utility methods that act on ColumnType
ConnectionTrait
The generic API for a database connection that can perform query or execute statements. It abstracts database connection and transaction
CursorTrait
A trait for any type that can be turn into a cursor
EntityName
A Trait for mapping an Entity to a database table
EntityTrait
An abstract base class for defining Entities.
Iden
Identifier
IdenStatic
Ensure the identifier for an Entity can be converted to a static str
Linked
A Trait for links between Entities
LoaderTrait
This trait implements the Data Loader API
ModelTrait
The interface for Model, implemented by data structs
PaginatorTrait
A Trait for any type that can paginate results
PrimaryKeyArity
How many columns this Primary Key comprises
PrimaryKeyToColumn
How to map a Primary Key to a column
PrimaryKeyTrait
A Trait for to be used to define a Primary Key.
QueryFilter
Perform a FILTER opertation on a statement
Related
Checks if Entities are related
RelationTrait
Defines the relations of an Entity

Type Aliases§

ChronoDateTimeLocal
Date time represented in local time
ChronoDateTimeUtc
Date time represented in UTC
ChronoDateTimeWithTimeZone
Date time with fixed offset
DateTimeLocal
Date time represented in local time
DateTimeUtc
Date time represented in UTC
DateTimeWithTimeZone
Date time with fixed offset
DbConn
The same as a DatabaseConnection
DynIden
ForeignKeyAction
Action to perform on a foreign key whenever there are changes to an ActiveModel

Derive Macros§

DeriveActiveEnum
A derive macro to implement sea_orm::ActiveEnum trait for enums.
DeriveActiveModel
The DeriveActiveModel derive macro will implement ActiveModelTrait for ActiveModel which provides setters and getters for all active values in the active model.
DeriveActiveModelBehavior
Models that a user can override
DeriveColumn
The DeriveColumn derive macro will implement [ColumnTrait] for Columns. It defines the identifier of each column by implementing Iden and IdenStatic. The EnumIter is also derived, allowing iteration over all enum variants.
DeriveCustomColumn
Derive a column if column names are not in snake-case
DeriveDisplay
DeriveEntity
Create an Entity
DeriveEntityModel
This derive macro is the ‘almighty’ macro which automatically generates Entity, Column, and PrimaryKey from a given Model.
DeriveIden
The DeriveIden derive macro will implement sea_orm::sea_query::Iden for simplify Iden implementation.
DeriveIntoActiveModel
Derive into an active model
DeriveModel
The DeriveModel derive macro will implement ModelTrait for Model, which provides setters and getters for all attributes in the mod It also implements FromQueryResult to convert a query result into the corresponding Model.
DerivePartialModel
The DerivePartialModel derive macro will implement [sea_orm::PartialModelTrait] for simplify partial model queries.
DerivePrimaryKey
The DerivePrimaryKey derive macro will implement [PrimaryKeyToColumn] for PrimaryKey which defines tedious mappings between primary keys and columns. The EnumIter is also derived, allowing iteration over all enum variants.
DeriveRelatedEntity
The DeriveRelatedEntity derive macro will implement seaography::RelationBuilder for RelatedEntity enumeration.
DeriveRelation
The DeriveRelation derive macro will implement RelationTrait for Relation.
DeriveValueType
Implements traits for types that wrap a database value type.
EnumIter
Creates a new type that iterates of the variants of an enum.
Iden