actix_cloud::macros

Attribute Macro entity_behavior

Source
#[entity_behavior]
Available on crate features macros and seaorm only.
Expand description

Default entity behavior:

  • entity_id
  • entity_timestamp

§Examples

#[entity_id(rand_i64())]
#[entity_timestamp]
impl ActiveModel {}

#[entity_behavior]
impl ActiveModelBehavior for ActiveModel {}