pubmodv2_0;usestd::result;usethiserror::Error;/// The global `Result` alias of the library.
pubtypeResult<T>=result::Result<T, Error>;/// The global `Error` enum of the library.
#[derive(Debug, Error)]pubenumError{#[error(transparent)]
V2_0Error(#[from]v2_0::Error),}