πŸ™Fields available for getting

This page lists most (as it is always changing) fields which have a getter function.

The links included will point to struct definitions in the source code, all the entries which have no tags or fields which have #[table(save)] (It does not matter if there is #[serde(skip)] there) can be accessed through the API system.

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>>,
    
    . . .
}

To access said entries please refer to this page.