Trait exonum::messages::ServiceMessage [] [src]

pub trait ServiceMessage: Message {
    const SERVICE_ID: u16;
    const MESSAGE_ID: u16;
}

A Message which belongs to a particular service.

Associated Constants

ID of the service this message belongs to.

ID of the message itself. Should be unique within a service.

Implementors