We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6593cd4 commit aa06783Copy full SHA for aa06783
src/crypto/sealed.rs
@@ -110,8 +110,8 @@ impl SealedTableEntry {
110
111
let decrypted = async_map_somes(decryptable_items, |items| cipher.decrypt(items)).await?;
112
let mut chunks_exact = decrypted.chunks_exact(protected_attributes.len());
113
- let mut default_iter = std::iter::repeat_with::<&[Option<Plaintext>], _>(|| &[])
114
- .take(plaintext_items.len());
+ let mut default_iter =
+ std::iter::repeat_with::<&[Option<Plaintext>], _>(|| &[]).take(plaintext_items.len());
115
116
let decrypted_iter: &mut dyn Iterator<Item = &[Option<Plaintext>]> =
117
if protected_attributes.len() > 0 {
0 commit comments