// SPDX-License-Identifier: Apache-2.0
usecrate::prelude::Codec;/// This trait exposes the codec information for multicoded types
pubtraitCodecInfo{/// return the preferred codec associated with this object
fnpreferred_codec()-> Codec;/// return the actual codec associated with this object
fncodec(&self)-> Codec;}