pub trait UnsignedAddPrimitives {
type F: TowerField;
const BIT_LENGTH: usize;
}
Expand description
A very simple trait used in Addition gadgets for unsigned integers of different bit lengths.
Required Associated Constants§
const BIT_LENGTH: usize
Required Associated Types§
type F: TowerField
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.