Skip to content

Commit ee9d47f

Browse files
committed
refactor(crypto): Remove confusing explicit Sized bound
The bound is there by default, no need to put it in explicitly.
1 parent 2e80073 commit ee9d47f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/matrix-sdk-crypto/src/store/traits.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ pub trait IntoCryptoStore {
174174

175175
impl<T> IntoCryptoStore for T
176176
where
177-
T: CryptoStore + Sized + 'static,
177+
T: CryptoStore + 'static,
178178
{
179179
fn into_crypto_store(self) -> Arc<dyn CryptoStore> {
180180
Arc::new(self)

0 commit comments

Comments
 (0)