mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-03-22 11:22:39 +00:00
14 lines
306 B
Rust
14 lines
306 B
Rust
pub mod community_follower_view;
|
|
pub mod community_moderator_view;
|
|
pub mod community_user_ban_view;
|
|
pub mod community_view;
|
|
pub mod post_view;
|
|
pub mod site_view;
|
|
pub mod user_view;
|
|
|
|
pub(crate) trait ViewToVec {
|
|
type DbTuple;
|
|
fn to_vec(tuple: Vec<Self::DbTuple>) -> Vec<Self>
|
|
where
|
|
Self: Sized;
|
|
}
|