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

pub enum ServerEvent {
    TopologyChange(TopologyChange),
    StatusChange(StatusChange),
    SchemaChange(SchemaChange),
}

Full server event that contains all details about a concreate change.

Variants

Events related to change in the cluster topology

Events related to change of node status.

Events related to schema change.

Trait Implementations

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 Debug for ServerEvent
[src]

Formats the value using the given formatter. Read more

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 !=.

impl FromCursor for ServerEvent
[src]

It should return an implementor from an io::Cursor over an array of bytes.

Auto Trait Implementations

impl Send for ServerEvent

impl Sync for ServerEvent