1 2 3 4 5 6 7 8
//! This module provides disk storage traits //! //! #![cfg_attr(not(feature = "std"), no_std)] /// This trait defines the interface for disk storage operations. pub trait Disk {}