Trait kdbplus::ipc::Query[][src]

pub trait Query: Send + Sync {
    fn serialize(&self, message_type: u8) -> Vec<u8>;
}
Expand description

Feature of query object.

Required methods

Serialize into q IPC bytes including a header (encoding, message type, compresssion flag and total message length).

Parameters

  • message_type: Message type. One of followings:
    • qmsg_type::asynchronous
    • qmsg_type::synchronous
    • qmsg_type::response

Implementations on Foreign Types

Text query.

Implementors