Get all entries for dumping the persistent application state.
(&self)
| 232 | |
| 233 | /// Get all entries for dumping the persistent application state. |
| 234 | pub fn get_all_entries(&self) -> Result<Map<String, Value>, DatabaseError> { |
| 235 | self.all_entries(Table::State) |
| 236 | } |
| 237 | |
| 238 | /// Get cognito credentials used by toolkit telemetry. |
| 239 | pub fn get_credentials_entry(&mut self) -> Result<Option<CredentialsJson>, DatabaseError> { |
no test coverage detected