Enum cdrs::frame::events::SimpleServerEvent[][src]

pub enum SimpleServerEvent {
    TopologyChange,
    StatusChange,
    SchemaChange,
}

Simplified ServerEvent that does not contain details about a concrete change. It may be useful for subscription when you need only string representation of an event.

Variants

Methods

impl SimpleServerEvent
[src]

Trait Implementations

impl Debug for SimpleServerEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SimpleServerEvent
[src]

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

This method tests for !=.

impl From<ServerEvent> for SimpleServerEvent
[src]

Performs the conversion.

impl<'a> From<&'a ServerEvent> for SimpleServerEvent
[src]

Performs the conversion.

impl PartialEq<ServerEvent> for SimpleServerEvent
[src]

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

This method tests for !=.

impl PartialEq<SimpleServerEvent> for ServerEvent
[src]

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

This method tests for !=.

Auto Trait Implementations