[][src]Struct sql_support::query_plan::QueryPlanStep

pub struct QueryPlanStep {
    pub node_id: i32,
    pub parent_id: i32,
    pub aux: i32,
    pub detail: String,
}

Fields

node_id: i32parent_id: i32aux: i32detail: String

Trait Implementations

impl Clone for QueryPlanStep[src]

impl Debug for QueryPlanStep[src]

impl Eq for QueryPlanStep[src]

impl Hash for QueryPlanStep[src]

impl PartialEq<QueryPlanStep> for QueryPlanStep[src]

impl StructuralEq for QueryPlanStep[src]

impl StructuralPartialEq for QueryPlanStep[src]

Auto Trait Implementations

impl RefUnwindSafe for QueryPlanStep

impl Send for QueryPlanStep

impl Sync for QueryPlanStep

impl Unpin for QueryPlanStep

impl UnwindSafe for QueryPlanStep

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> CallHasher for T where
    T: Hash

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.