Struct tipb::Executor[][src]

pub struct Executor {
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
    // some fields omitted
}

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Executor[src]

pub fn new() -> Executor[src]

pub fn get_tp(&self) -> ExecType[src]

pub fn clear_tp(&mut self)[src]

pub fn has_tp(&self) -> bool[src]

pub fn set_tp(&mut self, v: ExecType)[src]

pub fn get_tbl_scan(&self) -> &TableScan[src]

pub fn clear_tbl_scan(&mut self)[src]

pub fn has_tbl_scan(&self) -> bool[src]

pub fn set_tbl_scan(&mut self, v: TableScan)[src]

pub fn mut_tbl_scan(&mut self) -> &mut TableScan[src]

pub fn take_tbl_scan(&mut self) -> TableScan[src]

pub fn get_idx_scan(&self) -> &IndexScan[src]

pub fn clear_idx_scan(&mut self)[src]

pub fn has_idx_scan(&self) -> bool[src]

pub fn set_idx_scan(&mut self, v: IndexScan)[src]

pub fn mut_idx_scan(&mut self) -> &mut IndexScan[src]

pub fn take_idx_scan(&mut self) -> IndexScan[src]

pub fn get_selection(&self) -> &Selection[src]

pub fn clear_selection(&mut self)[src]

pub fn has_selection(&self) -> bool[src]

pub fn set_selection(&mut self, v: Selection)[src]

pub fn mut_selection(&mut self) -> &mut Selection[src]

pub fn take_selection(&mut self) -> Selection[src]

pub fn get_aggregation(&self) -> &Aggregation[src]

pub fn clear_aggregation(&mut self)[src]

pub fn has_aggregation(&self) -> bool[src]

pub fn set_aggregation(&mut self, v: Aggregation)[src]

pub fn mut_aggregation(&mut self) -> &mut Aggregation[src]

pub fn take_aggregation(&mut self) -> Aggregation[src]

pub fn get_top_n(&self) -> &TopN[src]

pub fn clear_top_n(&mut self)[src]

pub fn has_top_n(&self) -> bool[src]

pub fn set_top_n(&mut self, v: TopN)[src]

pub fn mut_top_n(&mut self) -> &mut TopN[src]

pub fn take_top_n(&mut self) -> TopN[src]

pub fn get_limit(&self) -> &Limit[src]

pub fn clear_limit(&mut self)[src]

pub fn has_limit(&self) -> bool[src]

pub fn set_limit(&mut self, v: Limit)[src]

pub fn mut_limit(&mut self) -> &mut Limit[src]

pub fn take_limit(&mut self) -> Limit[src]

pub fn get_exchange_receiver(&self) -> &ExchangeReceiver[src]

pub fn clear_exchange_receiver(&mut self)[src]

pub fn has_exchange_receiver(&self) -> bool[src]

pub fn set_exchange_receiver(&mut self, v: ExchangeReceiver)[src]

pub fn mut_exchange_receiver(&mut self) -> &mut ExchangeReceiver[src]

pub fn take_exchange_receiver(&mut self) -> ExchangeReceiver[src]

pub fn get_join(&self) -> &Join[src]

pub fn clear_join(&mut self)[src]

pub fn has_join(&self) -> bool[src]

pub fn set_join(&mut self, v: Join)[src]

pub fn mut_join(&mut self) -> &mut Join[src]

pub fn take_join(&mut self) -> Join[src]

pub fn get_executor_id(&self) -> &str[src]

pub fn clear_executor_id(&mut self)[src]

pub fn has_executor_id(&self) -> bool[src]

pub fn set_executor_id(&mut self, v: String)[src]

pub fn mut_executor_id(&mut self) -> &mut String[src]

pub fn take_executor_id(&mut self) -> String[src]

pub fn get_kill(&self) -> &Kill[src]

pub fn clear_kill(&mut self)[src]

pub fn has_kill(&self) -> bool[src]

pub fn set_kill(&mut self, v: Kill)[src]

pub fn mut_kill(&mut self) -> &mut Kill[src]

pub fn take_kill(&mut self) -> Kill[src]

pub fn get_exchange_sender(&self) -> &ExchangeSender[src]

pub fn clear_exchange_sender(&mut self)[src]

pub fn has_exchange_sender(&self) -> bool[src]

pub fn set_exchange_sender(&mut self, v: ExchangeSender)[src]

pub fn mut_exchange_sender(&mut self) -> &mut ExchangeSender[src]

pub fn take_exchange_sender(&mut self) -> ExchangeSender[src]

pub fn get_projection(&self) -> &Projection[src]

pub fn clear_projection(&mut self)[src]

pub fn has_projection(&self) -> bool[src]

pub fn set_projection(&mut self, v: Projection)[src]

pub fn mut_projection(&mut self) -> &mut Projection[src]

pub fn take_projection(&mut self) -> Projection[src]

Trait Implementations

impl Clear for Executor[src]

impl Clone for Executor[src]

impl Debug for Executor[src]

impl Default for Executor[src]

impl<'a> Default for &'a Executor[src]

impl Message for Executor[src]

impl PartialEq<Executor> for Executor[src]

impl PbPrint for Executor[src]

impl ProtobufValue for Executor[src]

impl StructuralPartialEq for Executor[src]

Auto Trait Implementations

impl RefUnwindSafe for Executor

impl Send for Executor

impl Sync for Executor

impl Unpin for Executor

impl UnwindSafe for Executor

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> 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.