Enum eventstore_tcp::adapted::ReadAllError [] [src]

pub enum ReadAllError<'a> {
    NotModified,
    Error(Option<Cow<'a, str>>),
    AccessDenied,
}

Failure cases of wire enum ReadAllResult.

Variants

Unknown when this happens,

Other error

Access was denied (no credentials provided or insufficient permissions)

Trait Implementations

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

This method tests for !=.

impl<'a> From<(ReadAllResult, Option<Cow<'a, str>>)> for ReadAllError<'a>
[src]

Performs the conversion.