// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
//! Extension types.
usestd::fmt;pubmoddatetime;#[cfg(test)]modtests;/// An empty metadata struct for extension dtypes that do not require any metadata.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]pubstructEmptyMetadata;implfmt::Display forEmptyMetadata{fnfmt(&self, f:&mutfmt::Formatter<'_>)->fmt::Result{write!(f,"")}}