Struct eventstore_tcp::adapted::ReadAllCompleted [] [src]

pub struct ReadAllCompleted<'a> {
    pub commit_position: LogPosition,
    pub prepare_position: LogPosition,
    pub events: Vec<ResolvedEvent<'a>>,
    pub next_commit_position: Option<LogPosition>,
    pub next_prepare_position: Option<LogPosition>,
}

Successful response to Message::ReadAllEvents.

Fields

Position of the commit of the current prepare

Position of the current prepare

The read events, with position metadata

For paging: next commit position

For paging: next prepare position

Trait Implementations

impl<'a> Debug for ReadAllCompleted<'a>
[src]

Formats the value using the given formatter.

impl<'a> Clone for ReadAllCompleted<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> PartialEq for ReadAllCompleted<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.