pub type FieldBytes<C> = GenericArray<u8, FieldBytesSize<C>>;Expand description
Byte representation of a base/scalar field element of a given curve.
Aliased Type§
#[repr(transparent)]pub struct FieldBytes<C> { /* private fields */ }Trait Implementations§
Source§impl<C> From<&NonZeroScalar<C>> for FieldBytes<C>where
    C: CurveArithmetic,
 
impl<C> From<&NonZeroScalar<C>> for FieldBytes<C>where
    C: CurveArithmetic,
Source§fn from(scalar: &NonZeroScalar<C>) -> FieldBytes<C>
 
fn from(scalar: &NonZeroScalar<C>) -> FieldBytes<C>
Converts to this type from the input type.
Source§impl<C> From<NonZeroScalar<C>> for FieldBytes<C>where
    C: CurveArithmetic,
 
impl<C> From<NonZeroScalar<C>> for FieldBytes<C>where
    C: CurveArithmetic,
Source§fn from(scalar: NonZeroScalar<C>) -> FieldBytes<C>
 
fn from(scalar: NonZeroScalar<C>) -> FieldBytes<C>
Converts to this type from the input type.