[][src]Struct eventstore::types::ResolvedEvent

pub struct ResolvedEvent {
    pub event: Option<RecordedEvent>,
    pub link: Option<RecordedEvent>,
    pub position: Option<Position>,
}

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.

position: Option<Position>

Possible Position of that event in the server transaction file.

Methods

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) -> Option<&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 orginal event, otherwise it will be the event.

TODO - It's impossible for get_original_event to be undefined.

pub fn get_original_stream_id(&self) -> Option<&Chars>[src]

Returns the stream id of the original event.

Trait Implementations

impl Debug for ResolvedEvent[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T