[][src]Struct rustcmdpev::structure::explain::explain::Explain

pub struct Explain {
    pub plan: Plan,
    pub planning_time: f64,
    pub execution_time: f64,
    pub total_cost: f64,
    pub max_rows: u64,
    pub max_cost: f64,
    pub max_duration: f64,
}

The Explain struct

Fields

plan: Planplanning_time: f64execution_time: f64total_cost: f64max_rows: u64max_cost: f64max_duration: f64

Trait Implementations

impl Clone for Explain[src]

impl Debug for Explain[src]

impl Default for Explain[src]

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

impl Serialize for Explain[src]

Auto Trait Implementations

impl RefUnwindSafe for Explain

impl Send for Explain

impl Sync for Explain

impl Unpin for Explain

impl UnwindSafe for Explain

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.