object_transfer 0.0.3

An object transfer library for various message broker and/or protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
use ::thiserror::Error;

/// Error type for NATS SubFetcher operations.
#[derive(Error, Debug)]
pub enum NatsSubFetcherError {
  /// Error during the creation of a JetStream stream.
  #[error("NATS JetStream Stream Creation Error: {0}")]
  JetStreamStreamCreation(
    #[from] async_nats::jetstream::context::CreateStreamError,
  ),
}