Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::execution::physicalplan::PhysicalPlan - Rust
[go: Go Back, main page]

[][src]Enum datafusion::execution::physicalplan::PhysicalPlan

pub enum PhysicalPlan {
    Interactive {
        plan: Rc<LogicalPlan>,
    },
    Write {
        plan: Rc<LogicalPlan>,
        filename: String,
        kind: String,
    },
    Show {
        plan: Rc<LogicalPlan>,
        count: usize,
    },
}

Variants

Run a query and return the results to the client

Fields of Interactive

Execute a logical plan and write the output to a file

Fields of Write

Fields of Show

Trait Implementations

impl Clone for PhysicalPlan
[src]

Performs copy-assignment from source. Read more

impl Debug for PhysicalPlan
[src]

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

impl Serialize for PhysicalPlan
[src]

Auto Trait Implementations

impl !Send for PhysicalPlan

impl !Sync for PhysicalPlan

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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