pub type FieldBits<V> = BitArray<V, Lsb0>;Available on crate feature
bits only.Expand description
Bit representation of a field element.
Aliased Type§
#[repr(transparent)]pub struct FieldBits<V> {
pub _ord: PhantomData<Lsb0>,
pub data: V,
}Fields§
§_ord: PhantomData<Lsb0>The ordering of bits within an A::Store element.
data: VThe wrapped data buffer.
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.