// SPDX-License-Identifier: Apache-2.0
usecrate::prelude::Base;/// This trait exposes the preferred encoding for this multicodec type
pubtraitEncodingInfo{/// return the preferred encoding for this multicodec type
fnpreferred_encoding()-> Base;/// return the actual encoding for this multicodec type
fnencoding(&self)-> Base;}