eventstore 2.1.2-alpha

Official EventStoreDB gRPC client
Documentation
1
2
3
4
5
6
7
8
9
use crate::impl_options_trait;
use crate::options::CommonOperationOptions;

#[derive(Clone, Default)]
pub struct BatchAppendOptions {
    pub(crate) common_operation_options: CommonOperationOptions,
}

impl_options_trait!(BatchAppendOptions, super::OperationKind::Streaming);