Deserial

Trait Deserial 

Source
pub trait Deserial: Sized {
    // Required method
    fn deserial<R>(source: &mut R) -> Result<Self, Error>
       where R: ReadBytesExt;
}
Expand description

Trait for types which can be recovered from byte sources.

Required Methods§

Source

fn deserial<R>(source: &mut R) -> Result<Self, Error>
where R: ReadBytesExt,

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.

Implementations on Foreign Types§

Source§

impl Deserial for IpAddr

Source§

fn deserial<R>(source: &mut R) -> Result<IpAddr, Error>
where R: ReadBytesExt,

Source§

impl Deserial for SocketAddr

Source§

impl Deserial for bool

Source§

fn deserial<R>(source: &mut R) -> Result<bool, Error>
where R: ReadBytesExt,

Source§

impl Deserial for i8

Source§

fn deserial<R>(source: &mut R) -> Result<i8, Error>
where R: ReadBytesExt,

Source§

impl Deserial for i16

Source§

fn deserial<R>(source: &mut R) -> Result<i16, Error>
where R: ReadBytesExt,

Source§

impl Deserial for i32

Source§

fn deserial<R>(source: &mut R) -> Result<i32, Error>
where R: ReadBytesExt,

Source§

impl Deserial for i64

Source§

fn deserial<R>(source: &mut R) -> Result<i64, Error>
where R: ReadBytesExt,

Source§

impl Deserial for i128

Source§

fn deserial<R>(source: &mut R) -> Result<i128, Error>
where R: ReadBytesExt,

Source§

impl Deserial for u8

Source§

fn deserial<R>(source: &mut R) -> Result<u8, Error>
where R: ReadBytesExt,

Source§

impl Deserial for u16

Source§

fn deserial<R>(source: &mut R) -> Result<u16, Error>
where R: ReadBytesExt,

Source§

impl Deserial for u32

Source§

fn deserial<R>(source: &mut R) -> Result<u32, Error>
where R: ReadBytesExt,

Source§

impl Deserial for u64

Source§

fn deserial<R>(source: &mut R) -> Result<u64, Error>
where R: ReadBytesExt,

Source§

impl Deserial for u128

Source§

fn deserial<R>(source: &mut R) -> Result<u128, Error>
where R: ReadBytesExt,

Source§

impl Deserial for String

Source§

fn deserial<R>(source: &mut R) -> Result<String, Error>
where R: ReadBytesExt,

Source§

impl Deserial for Ipv4Addr

Source§

impl Deserial for Ipv6Addr

Source§

impl Deserial for NonZero<i8>

Source§

fn deserial<R>(source: &mut R) -> Result<NonZero<i8>, Error>
where R: ReadBytesExt,

Source§

impl Deserial for NonZero<i16>

Source§

impl Deserial for NonZero<i32>

Source§

impl Deserial for NonZero<i64>

Source§

impl Deserial for NonZero<i128>

Source§

impl Deserial for NonZero<u8>

Source§

fn deserial<R>(source: &mut R) -> Result<NonZero<u8>, Error>
where R: ReadBytesExt,

Source§

impl Deserial for NonZero<u16>

Source§

impl Deserial for NonZero<u32>

Source§

impl Deserial for NonZero<u64>

Source§

impl Deserial for NonZero<u128>

Source§

impl Deserial for Fp<MontBackend<FrConfig, 4>, 4>

Source§

fn deserial<R>(source: &mut R) -> Result<Fp<MontBackend<FrConfig, 4>, 4>, Error>
where R: ReadBytesExt,

Source§

impl Deserial for RistrettoPoint

Source§

impl Deserial for Scalar

Source§

fn deserial<R>(source: &mut R) -> Result<Scalar, Error>
where R: ReadBytesExt,

Source§

impl Deserial for SigningKey

Source§

impl Deserial for VerifyingKey

Source§

impl Deserial for Signature

Source§

impl Deserial for Ratio<u64>

Source§

fn deserial<R>(source: &mut R) -> Result<Ratio<u64>, Error>
where R: ReadBytesExt,

Source§

impl<K, V> Deserial for BTreeMap<K, V>
where K: Deserial + Ord, V: Deserial,

Read a map where the first 8 bytes are taken as length in big endian. The values must be serialized in strictly increasing order of keys.

Source§

fn deserial<R>(source: &mut R) -> Result<BTreeMap<K, V>, Error>
where R: ReadBytesExt,

Source§

impl<L, R> Deserial for Either<L, R>
where L: Deserial, R: Deserial,

Source§

fn deserial<X>(source: &mut X) -> Result<Either<L, R>, Error>
where X: ReadBytesExt,

Source§

impl<T> Deserial for Option<T>
where T: Deserial,

Deserialization is strict. It only accepts 0 or 1 tags.

Source§

fn deserial<X>(source: &mut X) -> Result<Option<T>, Error>
where X: ReadBytesExt,

Source§

impl<T> Deserial for Box<T>
where T: Deserial,

Source§

fn deserial<R>(source: &mut R) -> Result<Box<T>, Error>
where R: ReadBytesExt,

Source§

impl<T> Deserial for BTreeSet<T>
where T: Deserial + Ord,

Read a set where the first 8 bytes are taken as length in big endian. The values must be serialized in strictly increasing order.

Source§

fn deserial<R>(source: &mut R) -> Result<BTreeSet<T>, Error>
where R: ReadBytesExt,

Source§

impl<T> Deserial for Rc<T>
where T: Deserial,

Use the underlying type’s instance. Note that serial + deserial does not preserve sharing. It will allocate a new copy of the structure.

Source§

fn deserial<R>(source: &mut R) -> Result<Rc<T>, Error>
where R: ReadBytesExt,

Source§

impl<T> Deserial for Vec<T>
where T: Deserial,

Read a vector where the first 8 bytes are taken as length in big endian.

Source§

fn deserial<R>(source: &mut R) -> Result<Vec<T>, Error>
where R: ReadBytesExt,

Source§

impl<T> Deserial for PhantomData<T>

Source§

fn deserial<R>(_source: &mut R) -> Result<PhantomData<T>, Error>
where R: ReadBytesExt,

Source§

impl<T, S> Deserial for HashSet<T, S>
where T: Deserial + Eq + Hash, S: BuildHasher + Default,

Source§

fn deserial<R>(source: &mut R) -> Result<HashSet<T, S>, Error>
where R: ReadBytesExt,

Source§

impl<T, S, U> Deserial for (T, S, U)
where T: Deserial, S: Deserial, U: Deserial,

Source§

impl<T, U> Deserial for (T, U)
where T: Deserial, U: Deserial,

Source§

fn deserial<R>(source: &mut R) -> Result<(T, U), Error>
where R: ReadBytesExt,

Source§

impl<T, const N: usize> Deserial for [T; N]
where T: Deserial,

Source§

fn deserial<R>(source: &mut R) -> Result<[T; N], Error>
where R: ReadBytesExt,

Implementors§

Source§

impl Deserial for SchemeId

Source§

impl Deserial for VerifyKey

Source§

impl Deserial for Address

Source§

impl Deserial for DelegationTarget

Source§

impl Deserial for Level1Update

Source§

impl Deserial for OpenStatus

Source§

impl Deserial for ProtocolVersion

Source§

impl Deserial for RootUpdate

Source§

impl Deserial for UpdatePayload

Source§

impl Deserial for WasmVersion

Source§

impl Deserial for BlockItem<EncodedPayload>

Source§

impl Deserial for Payload

Source§

impl Deserial for Network

Source§

impl Deserial for Web3IdAttribute

Source§

impl Deserial for Keypair

Source§

impl Deserial for concordium_rust_sdk::ecvrf::Proof

Implements https://tools.ietf.org/html/draft-irtf-cfrg-vrf-07.html#section-5.4.4 Construct a Proof from a slice of bytes. This function always results in a valid proof object.

Source§

impl Deserial for concordium_rust_sdk::ecvrf::PublicKey

Construct a PublicKey from a slice of bytes. This function always results in a valid public key, in particular the curve point is not of small order (and hence also not a point at infinity).

Source§

impl Deserial for concordium_rust_sdk::ecvrf::SecretKey

Construct a SecretKey from a slice of bytes.

Source§

impl Deserial for Ed25519DlogProof

Source§

impl Deserial for EncryptedAmountAggIndex

Source§

impl Deserial for EncryptedAmountIndex

Source§

impl Deserial for AttributeKind

Source§

impl Deserial for Threshold

Source§

impl Deserial for AccountOwnershipProof

Source§

impl Deserial for AccountOwnershipSignature

Source§

impl Deserial for ArIdentity

Source§

impl Deserial for AttributeTag

Source§

impl Deserial for ChoiceArParameters

Source§

impl Deserial for CredentialPublicKeys

Source§

impl Deserial for Description

Source§

impl Deserial for IpCdiSignature

Source§

impl Deserial for IpIdentity

Source§

impl Deserial for IpMetadata

Source§

impl Deserial for YearMonth

Source§

impl Deserial for RawCbor

Source§

impl Deserial for TokenId

Source§

impl Deserial for BlockSignature

Source§

impl Deserial for FinalizerIndex

Source§

impl Deserial for QuorumSignature

Source§

impl Deserial for TimeoutSignature

Source§

impl Deserial for Duration

Source§

impl Deserial for ModuleSource

Source§

impl Deserial for OwnedContractName

Source§

impl Deserial for OwnedParameter

Source§

impl Deserial for OwnedReceiveName

Source§

impl Deserial for WasmModule

Source§

impl Deserial for AbsoluteBlockHeight

Source§

impl Deserial for AccessStructure

Source§

impl Deserial for AccountIndex

Source§

impl Deserial for AmountFraction

Source§

impl Deserial for AuthorizationsV0

Source§

impl Deserial for BakerAggregationSignKey

Source§

impl Deserial for BakerAggregationVerifyKey

Source§

impl Deserial for BakerElectionSignKey

Source§

impl Deserial for BakerElectionVerifyKey

Source§

impl Deserial for BakerId

Source§

impl Deserial for BakerKeyPairs

Source§

impl Deserial for BakerParameters

Source§

impl Deserial for BakerSignatureSignKey

Source§

impl Deserial for BakerSignatureVerifyKey

Source§

impl Deserial for BlockHeight

Source§

impl Deserial for CapitalBound

Source§

impl Deserial for CommissionRanges

Source§

impl Deserial for CommissionRates

Source§

impl Deserial for ContractAddress

Source§

impl Deserial for CooldownParameters

Source§

impl Deserial for CreatePlt

Source§

impl Deserial for CredentialRegistrationID

Source§

impl Deserial for CredentialsPerBlockLimit

Source§

impl Deserial for DelegatorId

Source§

impl Deserial for DurationSeconds

Source§

impl Deserial for ElectionDifficulty

Source§

impl Deserial for Energy

Source§

impl Deserial for Epoch

Source§

impl Deserial for ExchangeRate

Source§

impl Deserial for FinalizationCommitteeParameters

Source§

impl Deserial for FinalizationIndex

Source§

impl Deserial for GASRewards

Source§

impl Deserial for GASRewardsV1

Source§

impl Deserial for GenesisIndex

Source§

impl Deserial for LeverageFactor

Source§

impl Deserial for Memo

Source§

impl Deserial for MintDistributionV0

Source§

impl Deserial for MintDistributionV1

Source§

impl Deserial for MintRate

Source§

impl Deserial for Nonce

Source§

impl Deserial for PartsPerHundredThousands

Source§

impl Deserial for PoolParameters

Source§

impl Deserial for ProtocolUpdate

Source§

impl Deserial for RegisteredData

Source§

impl Deserial for RewardPeriodLength

Source§

impl Deserial for Round

Source§

impl Deserial for Slot

Source§

impl Deserial for SlotDuration

Source§

impl Deserial for TimeParameters

Source§

impl Deserial for TimeoutParameters

Source§

impl Deserial for TransactionFeeDistribution

Source§

impl Deserial for TransactionIndex

Source§

impl Deserial for UpdateHeader

Source§

impl Deserial for UpdateInstruction

Source§

impl Deserial for UpdateInstructionSignature

Source§

impl Deserial for UpdateKeysIndex

Source§

impl Deserial for UpdateKeysThreshold

Source§

impl Deserial for UpdatePublicKey

Source§

impl Deserial for UpdateSequenceNumber

Source§

impl Deserial for UrlText

Source§

impl Deserial for ValidatorScoreParameters

Source§

impl Deserial for PreAccountTransaction

Source§

impl Deserial for AccountAccessStructure

Source§

impl Deserial for AccountTransaction<Payload>

Source§

impl Deserial for AccountTransaction<EncodedPayload>

Source§

impl Deserial for AddBakerPayload

Source§

impl Deserial for InitContractPayload

Source§

impl Deserial for PayloadSize

Source§

impl Deserial for TransactionHeader

Source§

impl Deserial for UpdateContractPayload

Source§

impl Deserial for Challenge

Source§

impl Deserial for Version

Source§

impl Deserial for AccountAddress

Source§

impl Deserial for Amount

Source§

impl Deserial for CredentialIndex

Source§

impl Deserial for KeyIndex

Source§

impl Deserial for concordium_rust_sdk::common::types::Ratio

Source§

impl Deserial for concordium_rust_sdk::common::types::Signature

Source§

impl Deserial for Timestamp

Source§

impl Deserial for TransactionSignature

Source§

impl Deserial for TransactionTime

Source§

impl<C1, C2> Deserial for concordium_base::sigma_protocols::com_eq_different_groups::Response<C1, C2>
where C1: Curve, C2: Curve<Scalar = <C1 as Curve>::Scalar>,

Source§

impl<C> Deserial for AggregatedDecryptedAmount<C>
where C: Curve,

Source§

impl<C> Deserial for EncryptedAmount<C>
where C: Curve,

Source§

impl<C> Deserial for EncryptedAmountTransferData<C>
where C: Curve,

Source§

impl<C> Deserial for EncryptedAmountTransferProof<C>
where C: Curve,

Source§

impl<C> Deserial for IndexedEncryptedAmount<C>
where C: Curve,

Source§

impl<C> Deserial for SecToPubAmountTransferData<C>
where C: Curve,

Source§

impl<C> Deserial for SecToPubAmountTransferProof<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_rust_sdk::id::dodis_yampolskiy_prf::SecretKey<C>
where C: Curve,

Source§

impl<C> Deserial for BabyStepGiantStep<C>
where C: Curve,

Source§

impl<C> Deserial for Cipher<C>
where C: Curve,

Source§

impl<C> Deserial for Message<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_rust_sdk::id::elgamal::PublicKey<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_rust_sdk::id::elgamal::Randomness<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_rust_sdk::id::elgamal::SecretKey<C>
where C: Curve,

Source§

impl<C> Deserial for Commitment<C>
where C: Curve,

Source§

impl<C> Deserial for CommitmentKey<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_rust_sdk::id::pedersen_commitment::Randomness<C>
where C: Curve,

Source§

impl<C> Deserial for Value<C>
where C: Curve,

Source§

impl<C> Deserial for VecCommitmentKey<C>
where C: Curve,

Source§

impl<C> Deserial for KnownMessage<C>
where C: Pairing,

Source§

impl<C> Deserial for concordium_rust_sdk::id::ps_sig::PublicKey<C>
where C: Pairing,

Source§

impl<C> Deserial for concordium_rust_sdk::id::ps_sig::SecretKey<C>
where C: Pairing,

Source§

impl<C> Deserial for concordium_rust_sdk::id::ps_sig::Signature<C>
where C: Pairing,

Source§

impl<C> Deserial for UnknownMessage<C>
where C: Pairing,

Source§

impl<C> Deserial for Generators<C>
where C: Curve,

Source§

impl<C> Deserial for RangeProof<C>
where C: Curve,

Source§

impl<C> Deserial for AccCredentialInfo<C>
where C: Curve,

Source§

impl<C> Deserial for ArData<C>
where C: Curve,

Source§

impl<C> Deserial for ArInfo<C>
where C: Curve,

Source§

impl<C> Deserial for ChainArData<C>
where C: Curve,

Source§

impl<C> Deserial for ChainArDecryptedData<C>
where C: Curve,

Source§

impl<C> Deserial for CredentialDeploymentCommitments<C>
where C: Curve,

Source§

impl<C> Deserial for CredentialHolderInfo<C>
where C: Curve,

Source§

impl<C> Deserial for GlobalContext<C>
where C: Curve,

Source§

impl<C> Deserial for IdCredentials<C>
where C: Curve,

Source§

impl<C> Deserial for IpAnonymityRevokers<C>
where C: Curve,

Source§

impl<C> Deserial for IpArData<C>
where C: Curve,

Source§

impl<C> Deserial for IpArDecryptedData<C>
where C: Curve,

Source§

impl<C> Deserial for PublicInformationForIp<C>
where C: Curve,

Source§

impl<C> Deserial for SignedCommitments<C>
where C: Curve,

Source§

impl<C> Deserial for InnerProductProof<C>
where C: Curve,

Source§

impl<C> Deserial for SetMembershipProof<C>
where C: Curve,

Source§

impl<C> Deserial for SetNonMembershipProof<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_base::sigma_protocols::aggregate_dlog::Response<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_base::sigma_protocols::com_ineq::Response<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_base::sigma_protocols::com_lin::Response<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_base::sigma_protocols::com_mult::Response<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_base::sigma_protocols::dlog::Response<C>
where C: Curve,

Source§

impl<C> Deserial for EncTransCommit<C>
where C: Curve,

Source§

impl<C> Deserial for EncTransResponse<C>
where C: Curve,

Source§

impl<C> Deserial for EncTransState<C>
where C: Curve,

Source§

impl<C> Deserial for concordium_base::sigma_protocols::vcom_eq::Response<C>
where C: Curve,

Source§

impl<C> Deserial for VecComEq<C>
where C: Curve,

Source§

impl<C, AttributeType> Deserial for AtomicProof<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for AccountCredentialWithoutProofs<C, AttributeType>
where C: Curve, AttributeType: Deserial + Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for concordium_rust_sdk::id::id_proof_types::Proof<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for Statement<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for StatementWithContext<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for CredentialDeploymentValues<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for InitialCredentialDeploymentInfo<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for InitialCredentialDeploymentValues<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, AttributeType> Deserial for Policy<C, AttributeType>
where C: Curve, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, D> Deserial for CommittedMessages<C, D>
where C: Curve, D: Curve,

Source§

impl<C, TagType, AttributeType> Deserial for AtomicStatement<C, TagType, AttributeType>
where C: Curve, TagType: Serialize, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, TagType, AttributeType> Deserial for AttributeInRangeStatement<C, TagType, AttributeType>
where C: Curve, TagType: Serialize, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, TagType, AttributeType> Deserial for AttributeInSetStatement<C, TagType, AttributeType>
where C: Curve, TagType: Serialize, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<C, TagType, AttributeType> Deserial for AttributeNotInSetStatement<C, TagType, AttributeType>
where C: Curve, TagType: Serialize, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<F> Deserial for ArkField<F>
where F: Deserial,

Deserialization is implemented by delegating the functionality to the wrapped type.

Source§

impl<F, AttributeType> Deserial for AttributeList<F, AttributeType>
where F: Field, AttributeType: Attribute<F>,

Source§

impl<G> Deserial for ArkGroup<G>
where G: CurveGroup,

Deserialization is implemented by delegating the functionality to the compressed affine representation of ark_ec:CurveGroup.

Source§

impl<Kind> Deserial for NonZeroThresholdU8<Kind>

Source§

impl<Kind> Deserial for HigherLevelAccessStructure<Kind>

Source§

impl<P> Deserial for concordium_rust_sdk::aggregate_sig::PublicKey<P>
where P: Pairing,

Source§

impl<P> Deserial for concordium_rust_sdk::aggregate_sig::SecretKey<P>
where P: Pairing,

Source§

impl<P> Deserial for concordium_rust_sdk::aggregate_sig::Signature<P>
where P: Pairing,

Source§

impl<P> Deserial for BlindedSignature<P>
where P: Pairing,

Source§

impl<P> Deserial for BlindingRandomness<P>
where P: Pairing,

Source§

impl<P> Deserial for SigRetrievalRandomness<P>
where P: Pairing,

Source§

impl<P> Deserial for IpData<P>
where P: Pairing,

Source§

impl<P> Deserial for IpInfo<P>
where P: Pairing,

Source§

impl<P, C> Deserial for CommonPioProofFields<P, C>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>,

Source§

impl<P, C> Deserial for CredDeploymentProofs<P, C>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>,

Source§

impl<P, C> Deserial for IdOwnershipProofs<P, C>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>,

Source§

impl<P, C> Deserial for PreIdentityObject<P, C>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>,

Source§

impl<P, C> Deserial for PreIdentityObjectV1<P, C>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>,

Source§

impl<P, C> Deserial for PreIdentityProof<P, C>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>,

Source§

impl<P, C> Deserial for concordium_base::sigma_protocols::com_eq_sig::Response<P, C>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>,

Source§

impl<P, C, AttributeType> Deserial for AccountCredential<P, C, AttributeType>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<P, C, AttributeType> Deserial for AccountCredentialMessage<P, C, AttributeType>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<P, C, AttributeType> Deserial for CredentialDeploymentInfo<P, C, AttributeType>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<P, C, AttributeType> Deserial for UnsignedCredentialDeploymentInfo<P, C, AttributeType>
where P: Pairing, C: Curve<Scalar = <P as Pairing>::ScalarField>, AttributeType: Attribute<<C as Curve>::Scalar>,

Source§

impl<Purpose> Deserial for HashBytes<Purpose>

Source§

impl<R1, R2> Deserial for AndResponse<R1, R2>
where R1: Serialize, R2: Serialize,

Source§

impl<R> Deserial for ReplicateResponse<R>
where R: Serialize,

Source§

impl<R> Deserial for SigmaProof<R>
where R: Serialize,

Source§

impl<T> Deserial for Secret<T>
where T: Field + Serialize,

Source§

impl<T> Deserial for InclusiveRange<T>
where T: Deserial + Ord,

Source§

impl<T> Deserial for concordium_base::sigma_protocols::com_enc_eq::Response<T>
where T: Curve,

Source§

impl<T> Deserial for concordium_base::sigma_protocols::com_eq::Response<T>
where T: Curve,

Source§

impl<T> Deserial for Versioned<T>
where T: Deserial,

Source§

impl<TagType> Deserial for RevealAttributeStatement<TagType>
where TagType: Serialize,

Source§

impl<V> Deserial for BakerKeysPayload<V>