File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,15 @@ use super::traits::FiniteField;
1818use crate :: bfe;
1919use crate :: bfe_vec;
2020
21- /// This trait provides functions for encoding to and decoding from a Vec of [BFieldElement]s.
22- /// This encoding does not record the size of objects nor their type information; this is
23- /// the responsibility of the decoder.
21+ /// This trait provides functions for encoding to and decoding from a Vec of
22+ /// [BFieldElement]s. This encoding does not record the size of objects nor
23+ /// their type information; this is the responsibility of the decoder.
24+ ///
25+ /// ### Dyn-Compatibility
26+ ///
27+ /// This trait is _not_ [dyn-compatible] (previously known as “object safe”).
28+ ///
29+ /// [dyn-compatible]: https://doc.rust-lang.org/reference/items/traits.html#dyn-compatibility
2430pub trait BFieldCodec {
2531 type Error : Into < Box < dyn Error + Send + Sync > > + Debug + Display ;
2632
You can’t perform that action at this time.
0 commit comments