git.delta.rocks / unique-network / refs/commits / 2c2150662f3d

difftreelog

fmt: cargo fmt

Trubnikov Sergey2022-07-19parent: #f549b53.patch.diff
in: master

1 file changed

modifiedpallets/common/src/lib.rsdiffbeforeafterboth
1616
17//! # Common pallet17//! # Common pallet
18//!18//!
19//! The Common pallet provides an interface for common collection operations for different collection types 19//! The Common pallet provides an interface for common collection operations for different collection types
20//! (see [CommonCollectionOperations], as well as a generic dispatcher for these, see [dispatch] module. 20//! (see [CommonCollectionOperations], as well as a generic dispatcher for these, see [dispatch] module.
21//! It also provides this functionality to EVM, see [erc] and [eth] modules.21//! It also provides this functionality to EVM, see [erc] and [eth] modules.
22//!22//!
23//! ## Overview23//! ## Overview
131131
132/// Collection handle contains information about collection data and id.132/// Collection handle contains information about collection data and id.
133/// Also provides functionality to count consumed gas.133/// Also provides functionality to count consumed gas.
134/// 134///
135/// CollectionHandle is used as a generic wrapper for collections of all types.135/// CollectionHandle is used as a generic wrapper for collections of all types.
136/// It allows to perform common operations and queries on any collection type,136/// It allows to perform common operations and queries on any collection type,
137/// both completely general for all, as well as their respective implementations of [`CommonCollectionOperations`].137/// both completely general for all, as well as their respective implementations of [`CommonCollectionOperations`].