Struct postgres::CancelData [] [src]

pub struct CancelData {
    pub process_id: u32,
    pub secret_key: u32,
}

Contains information necessary to cancel queries for a session.

Fields

process_id: u32

The process ID of the session.

secret_key: u32

The secret key for the session.

Trait Implementations

impl Debug for CancelData
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for CancelData
[src]

fn clone(&self) -> CancelData

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for CancelData
[src]