πFields available for getting
This page lists most (as it is always changing) fields which have a getter function.
pub struct Application {
#[serde(skip)]
pub lua: Arc<Lua>, //This entry cannot be accessed
pub login_username: String, //This entry can be accessed
#[table(save)]
#[serde(skip)] //This entry can be accessed
pub server_connected_clients_profile: Arc<DashMap<String, ClientProfile>>,
. . .
}