Struct postgres_shared::Notification[][src]

pub struct Notification {
    pub process_id: i32,
    pub channel: String,
    pub payload: String,
}

An asynchronous notification.

Fields

The process ID of the notifying backend process.

The name of the channel that the notify has been raised on.

The "payload" string passed from the notifying process.

Trait Implementations

impl Clone for Notification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Notification
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations