difftreelog
doc: fix PR
in: master
2 files changed
primitives/data-structs/src/bounded.rsdiffbeforeafterboth14// You should have received a copy of the GNU General Public License14// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.161617//! This module contins implementations for support bounded structures in [`serde`].17//! This module contins implementations for support bounded structures ([`BoundedVec`], [`BoundedBTreeMap`], [`BoundedBTreeSet`]) in [`serde`].181819use core::fmt;19use core::fmt;20use sp_std::collections::{btree_map::BTreeMap, btree_set::BTreeSet};20use sp_std::collections::{btree_map::BTreeMap, btree_set::BTreeSet};primitives/data-structs/src/lib.rsdiffbeforeafterboth161617//! # Primitives crate.17//! # Primitives crate.18//!18//!19//! This crate contains amount of types, traits and constants.19//! This crate contains types, traits and constants.202021#![cfg_attr(not(feature = "std"), no_std)]21#![cfg_attr(not(feature = "std"), no_std)]2222