ZIm/crates/client/src
Marshall Bowers 843aad80c6
Flip the optionality of the auto_update setting (#10302)
This PR flips the optionality of the `AutoUpdateSettingContent` to make
it a bit easier to work with.

#### Before

```rs
struct AutoUpdateSettingContent(Option<bool>);

type FileContent = AutoUpdateSettingContent;
```

#### After

```rs
struct AutoUpdateSettingContent(bool);

type FileContent = Option<AutoUpdateSettingContent>;
```

Release Notes:

- N/A
2024-04-08 20:16:05 -04:00
..
telemetry Use SystemClock in EventCoalescer (#8317) 2024-02-23 20:07:13 -05:00
client.rs Flip the optionality of the auto_update setting (#10302) 2024-04-08 20:16:05 -04:00
telemetry.rs Fix test name (#9979) 2024-03-29 21:12:47 -04:00
test.rs remoting (#9680) 2024-03-22 08:44:56 -06:00
user.rs Fix joining hosted projects (#9038) 2024-03-07 19:56:41 -07:00