pub trait CommitToken:
Clone
+ Send
+ Sync
+ Debug
+ Display
+ 'static {
// Provided method
fn as_str(&self) -> String { ... }
}Available on crate feature
transport only.Expand description
Transport-specific token for commit/acknowledgment.
Each transport provides its own token type capturing what it needs to acknowledge message processing.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".