[][src]Struct eventstore::commands::TransactionStart

pub struct TransactionStart<'a> { /* fields omitted */ }

Command that starts a transaction on a stream.

Methods

impl<'a> TransactionStart<'a>[src]

pub fn require_master(self, require_master: bool) -> TransactionStart<'a>[src]

Asks the server receiving the command to be the master of the cluster in order to perform the write. Default: false.

pub fn expected_version(self, version: ExpectedVersion) -> TransactionStart<'a>[src]

Asks the server to check that the stream receiving the event is at the given expected version. Default: types::ExpectedVersion::Any.

pub fn credentials(self, value: Credentials) -> TransactionStart<'a>[src]

Performs the command with the given credentials.

pub fn execute(self) -> impl Future<Item = Transaction, Error = OperationError>[src]

Sends asnychronously the start transaction command to the server.

Auto Trait Implementations

impl<'a> Sync for TransactionStart<'a>

impl<'a> Send for TransactionStart<'a>

impl<'a> Unpin for TransactionStart<'a>

impl<'a> !RefUnwindSafe for TransactionStart<'a>

impl<'a> !UnwindSafe for TransactionStart<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err