[][src]Struct eventstore::WriteEvents

pub struct WriteEvents { /* fields omitted */ }

Command that sends events to a given stream.

Implementations

impl WriteEvents[src]

pub fn expected_version(self, version: ExpectedVersion) -> Self[src]

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

pub fn credentials(self, creds: Credentials) -> Self[src]

Performs the command with the given credentials.

pub async fn send_event(
    self,
    event: EventData
) -> Result<Result<WriteResult, WrongExpectedVersion>>
[src]

Sends asynchronously the write command to the server.

pub async fn send_iter<I>(
    self,
    events: I
) -> Result<Result<WriteResult, WrongExpectedVersion>> where
    I: IntoIterator<Item = EventData> + Send + Sync,
    <I as IntoIterator>::IntoIter: Send + Sync + 'static, 
[src]

Sends asynchronously the write command to the server.

pub async fn send<S>(
    self,
    events: S
) -> Result<Result<WriteResult, WrongExpectedVersion>> where
    S: Stream<Item = EventData> + Send + Sync + 'static, 
[src]

Sends asynchronously the write command to the server.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]