[][src]Struct eventstore::ResolvedEvent

pub struct ResolvedEvent {
    pub event: Option<RecordedEvent>,
    pub link: Option<RecordedEvent>,
    pub commit_position: Option<u64>,
}

A structure representing a single event or an resolved link event.

Fields

event: Option<RecordedEvent>

The event, or the resolved link event if this ResolvedEvent is a link event.

link: Option<RecordedEvent>

The link event if this ResolvedEvent is a link event.

commit_position: Option<u64>

Implementations

impl ResolvedEvent[src]

pub fn is_resolved(&self) -> bool[src]

If it's a link event with its associated resolved event.

pub fn get_original_event(&self) -> &RecordedEvent[src]

Returns the event that was read or which triggered the subscription. If this ResolvedEvent represents a link event, the link will be the original event, otherwise it will be the event.

pub fn get_original_stream_id(&self) -> &str[src]

Returns the stream id of the original event.

Trait Implementations

impl Debug for ResolvedEvent[src]

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]