[][src]Struct eventstore::EventData

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 by the server.

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

Assigns a JSON metadata to this event.

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

Assigns a raw binary metadata to this event.

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]