azeventhubs 0.20.0

An unofficial AMQP 1.0 rust client for Azure Event Hubs
Documentation
1
2
3
4
5
6
7
8
9
pub(crate) mod error;
pub(crate) mod sharable;
pub(crate) mod time;

/// A helper trait to convert a type into an `azure_core::Error`.
pub(crate) trait IntoAzureCoreError {
    /// Converts the type into an `azure_core::Error`.
    fn into_azure_core_error(self) -> azure_core::Error;
}