File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
bindings/matrix-sdk-ffi/src Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ use std::path::PathBuf;
4
4
#[ cfg( feature = "sqlite" ) ]
5
5
use matrix_sdk:: SqliteStoreConfig ;
6
6
7
-
8
7
/// The result of building a [`SessionStoreConfig`], with data that
9
8
/// can be passed directly to a ClientBuilder.
10
9
pub enum SessionStoreResult {
@@ -22,9 +21,8 @@ mod sqlite_session_store {
22
21
use tracing:: debug;
23
22
use zeroize:: Zeroizing ;
24
23
25
- use crate :: helpers:: unwrap_or_clone_arc;
26
24
use super :: SessionStoreResult ;
27
- use crate :: client_builder:: ClientBuildError ;
25
+ use crate :: { client_builder:: ClientBuildError , helpers :: unwrap_or_clone_arc } ;
28
26
29
27
/// The store paths the client will use when built.
30
28
#[ derive( Clone ) ]
@@ -234,7 +232,6 @@ pub enum SessionStoreConfig {
234
232
IndexedDb ( IndexedDbSessionStoreBuilder ) ,
235
233
}
236
234
237
-
238
235
impl SessionStoreConfig {
239
236
pub ( crate ) fn build ( & self ) -> Result < SessionStoreResult , ClientBuildError > {
240
237
match self {
You can’t perform that action at this time.
0 commit comments