You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_ => Err(meta.error("unsupported field attribute")),
292
308
}
293
309
})?;
@@ -308,7 +324,10 @@ impl SettingsBuilder {
308
324
}
309
325
310
326
(None,Some((compound_index_name, span))) => {
311
-
returnErr(syn::Error::new(span,format!("Compound attribute was specified but no query options were. Specify how this field should be queried with the attribute #[cipherstash(query = <option>, compound = \"{compound_index_name}\")]")));
327
+
returnErr(syn::Error::new(
328
+
span,
329
+
format!("Compound attribute was specified but no query options were. Specify how this field should be queried with the attribute #[cipherstash(query = <option>, compound = \"{compound_index_name}\")]"))
330
+
);
312
331
}
313
332
314
333
(None,None) => {}
@@ -345,6 +364,8 @@ impl SettingsBuilder {
345
364
unprotected_attributes,
346
365
skipped_attributes,
347
366
indexes,
367
+
encrypt_handlers,
368
+
decrypt_handlers,
348
369
} = self;
349
370
350
371
let sort_key_prefix = sort_key_prefix.into_prefix(&type_name);
0 commit comments