mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 10:07:56 +00:00
c100b0b2ba
* Export EventFieldMetadata * Fix up comments for public api
34 lines
695 B
Rust
34 lines
695 B
Rust
// Copyright 2019-2022 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
//! Types representing the metadata obtained from a node.
|
|
|
|
mod decode_with_metadata;
|
|
mod encode_with_metadata;
|
|
mod hash_cache;
|
|
mod metadata_location;
|
|
mod metadata_type;
|
|
|
|
pub use metadata_location::MetadataLocation;
|
|
|
|
pub use metadata_type::{
|
|
ErrorMetadata,
|
|
EventFieldMetadata,
|
|
EventMetadata,
|
|
InvalidMetadataError,
|
|
Metadata,
|
|
MetadataError,
|
|
PalletMetadata,
|
|
};
|
|
|
|
pub use decode_with_metadata::{
|
|
DecodeStaticType,
|
|
DecodeWithMetadata,
|
|
};
|
|
|
|
pub use encode_with_metadata::{
|
|
EncodeStaticType,
|
|
EncodeWithMetadata,
|
|
};
|