azservicebus 0.25.1

An unofficial AMQP 1.0 rust client for Azure Service Bus
Documentation
1
2
3
4
5
6
7
8
use crate::sealed::Sealed;

pub(crate) trait TransportConnectionScope: Sealed {
    type Error: std::error::Error + Send;

    /// Disposes of the connection scope.
    async fn dispose(&mut self) -> Result<(), Self::Error>;
}