// user.rs
// It is a partial user functions for comment. Application, that uses this comment app,
// may have full user details; modify user structure and functions here accordinlgy.
useserde_derive::{Serialize, Deserialize};#[derive(Debug, Serialize, Deserialize, Clone)]pubstructUser{pubname: String,
pubemail: String,
pubavatar: String,
pubunique_id: String
}