File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ for details on how this works and which dependency types are available.
5252``` rust
5353#[derive(FromClient )]
5454pub struct FoldersClient {
55- pub (crate ) key_store : KeyStore <KeyIds >,
55+ pub (crate ) key_store : KeyStore <KeySlotIds >,
5656 pub (crate ) api_configurations : Arc <ApiConfigurations >,
5757 pub (crate ) repository : Option <Arc <dyn Repository <Folder >>>,
5858}
Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ directly to obtain their dependencies.
1818``` rust
1919#[derive(FromClient )]
2020pub struct FoldersClient {
21- pub (crate ) key_store : KeyStore <KeyIds >,
21+ pub (crate ) key_store : KeyStore <KeySlotIds >,
2222 pub (crate ) api_configurations : Arc <ApiConfigurations >,
2323 pub (crate ) repository : Option <Arc <dyn Repository <Folder >>>,
2424}
2525```
2626
2727Some of the available dependency types that can be extracted are:
2828
29- - ` KeyStore<KeyIds > ` — access to the cryptographic key store
29+ - ` KeyStore<KeySlotIds > ` — access to the cryptographic key store
3030- ` Arc<ApiConfigurations> ` — HTTP API client configuration
3131- ` Option<Arc<dyn Repository<T>>> ` — state repository for a given domain type
3232
You can’t perform that action at this time.
0 commit comments