ark-scale 0.0.13

Arkworks serialization wrapped in Parity SCALE codec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

use crate::{self as ark_scale, ArkScaleMaxEncodedLen}; // ArkScale,ArkScaleRef,ConstEncodedLen

use ark_ff::fields::models::*;


impl<P: FpConfig<N>, const N: usize> ArkScaleMaxEncodedLen for Fp<P,N> {
    crate::impl_body_max_encode_len!();
}

impl<C: QuadExtConfig> ArkScaleMaxEncodedLen for QuadExtField<C> {
    crate::impl_body_max_encode_len!();
}

impl<C: CubicExtConfig> ArkScaleMaxEncodedLen for CubicExtField<C> {
    crate::impl_body_max_encode_len!();
}