Skip to main content

imessage_database/tables/messages/models/
mod.rs

1/*!
2 Message body models reconstructed from [`message.attributed_body`](crate::tables::messages::message::Message::attributed_body).
3*/
4
5pub use crate::tables::messages::models::{
6    attachment_meta::AttachmentMeta, attributed_range::AttributedRange,
7    bubble_component::BubbleComponent, filter_action::FilterAction, group_action::GroupAction,
8    service::Service, shared_location::SharedLocation,
9};
10
11mod attachment_meta;
12mod attributed_range;
13mod bubble_component;
14mod filter_action;
15mod group_action;
16mod service;
17mod shared_location;