[][src]Struct aiven_rs::service::types_service::Query

pub struct Query {
    pub active_channel_subscriptions: i32,
    pub active_database: String,
    pub active_pattern_matching_channel_subscriptions: i32,
    pub application_name: String,
    pub backend_start: String,
    pub backend_type: String,
    pub backend_xid: String,
    pub backend_xmin: String,
    pub client_addr: String,
    pub client_hostname: String,
    pub client_port: i32,
    pub connection_age_seconds: i32,
    pub connection_idle_seconds: i32,
    pub datid: i32,
    pub datname: String,
    pub flags: Vec<String>,
    pub flags_raw: String,
    pub id: String,
    pub multi_exec_commands: i32,
    pub name: String,
    pub output_buffer: i32,
    pub output_buffer_memory: i32,
    pub output_list_length: i32,
    pub pid: i32,
    pub query: String,
    pub query_buffer: i32,
    pub query_buffer_free: i32,
    pub query_duration: f32,
    pub query_start: String,
    pub state: String,
    pub state_change: String,
    pub usename: String,
    pub usesysid: i32,
    pub wait_event: String,
    pub wait_event_type: String,
    pub waiting: bool,
    pub xact_start: String,
}

Fields

active_channel_subscriptions: i32active_database: Stringactive_pattern_matching_channel_subscriptions: i32application_name: Stringbackend_start: Stringbackend_type: Stringbackend_xid: Stringbackend_xmin: Stringclient_addr: Stringclient_hostname: Stringclient_port: i32connection_age_seconds: i32connection_idle_seconds: i32datid: i32datname: Stringflags: Vec<String>flags_raw: Stringid: Stringmulti_exec_commands: i32name: Stringoutput_buffer: i32output_buffer_memory: i32output_list_length: i32pid: i32query: Stringquery_buffer: i32query_buffer_free: i32query_duration: f32query_start: Stringstate: Stringstate_change: Stringusename: Stringusesysid: i32wait_event: Stringwait_event_type: Stringwaiting: boolxact_start: String

Trait Implementations

impl Debug for Query[src]

impl Default for Query[src]

impl<'de> Deserialize<'de> for Query[src]

impl Serialize for Query[src]

Auto Trait Implementations

impl RefUnwindSafe for Query

impl Send for Query

impl Sync for Query

impl Unpin for Query

impl UnwindSafe for Query

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,