#![allow(unknown_lints)]// for clippy
externcrate hex;externcrate fallible_iterator;externcrate phf;externcrate postgres_protocol;pubmoderror;pubmodparams;pubmodtypes;pubmodrows;pubmodstmt;/// Contains information necessary to cancel queries for a session.
#[derive(Copy, Clone, Debug)]pubstructCancelData{/// The process ID of the session.
pubprocess_id:i32,
/// The secret key for the session.
pubsecret_key:i32,
}/// An asynchronous notification.
#[derive(Clone, Debug)]pubstructNotification{/// The process ID of the notifying backend process.
pubprocess_id:i32,
/// The name of the channel that the notify has been raised on.
pubchannel: String,
/// The "payload" string passed from the notifying process.
pubpayload: String,
}