Matthias
  • 👋Welcome
  • 👶Getting started
  • 📞Callbacks
  • 🕑Variables
    • 🎯Getter functions
      • 🙏Fields available for getting
  • 🧑‍🦯Visuals
    • ◻️Shapes
      • 📏Line
      • ⚪Circle
      • ⬜Rectangle
    • 📸Media
      • 🖼️Image
      • 🔡Text
    • 🔔Notifications
  • ☁️Miscellaneous
    • 📲Image memory management
Powered by GitBook
On this page
  1. Variables
  2. Getter functions

Fields available for getting

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

PreviousGetter functionsNextShapes

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 .

🕑
🎯
🙏
Application
Client
ClientConnection
UserInformation
this page