Struct eventstore::EventData[][src]

pub struct EventData { /* fields omitted */ }

Holds data of event about to be sent to the server.

Implementations

impl EventData[src]

pub fn json<S, P>(event_type: S, payload: P) -> Result<EventData> where
    P: Serialize,
    S: AsRef<str>, 
[src]

Creates an event with a JSON payload.

pub fn binary<S>(event_type: S, payload: Bytes) -> Self where
    S: AsRef<str>, 
[src]

Creates an event with a raw binary payload.

pub fn id(self, value: Uuid) -> Self[src]

Set an id to this event. By default, the id will be generated

pub fn metadata_as_json<P>(self, payload: P) -> Result<EventData> where
    P: Serialize
[src]

Assigns a JSON metadata to this event.

pub fn metadata(self, payload: Bytes) -> EventData[src]

Assigns a raw binary metadata to this event.

Trait Implementations

impl Clone for EventData[src]

impl ToEvents for EventData[src]

type Events = Once<Ready<EventData>>

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

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]