Hide or show this worker in UI lists.
(mut self, hidden: bool)
| 310 | |
| 311 | /// Hide or show this worker in UI lists. |
| 312 | pub fn hidden(mut self, hidden: bool) -> Self { |
| 313 | self.hidden = hidden; |
| 314 | self |
| 315 | } |
| 316 | |
| 317 | /// Override the preset permission policy. |
| 318 | pub fn with_permissions(mut self, permissions: PermissionPolicy) -> Self { |
no outgoing calls