pub trait RaaConfig:
Copy
+ Send
+ Sync {
const PERMUTE_IN_PLACE: bool;
const CHECK_FOR_OVERFLOWS: bool;
}Required Associated Constants§
Sourceconst PERMUTE_IN_PLACE: bool
const PERMUTE_IN_PLACE: bool
Whether to permute the codeword in place, instead of copying it using a precomputed permutation.
Sourceconst CHECK_FOR_OVERFLOWS: bool
const CHECK_FOR_OVERFLOWS: bool
Whether to check for overflows during encoding
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.