Struct tipb::DagRequest[][src]

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl DagRequest[src]

pub fn new() -> DagRequest[src]

pub fn get_start_ts_fallback(&self) -> u64[src]

pub fn clear_start_ts_fallback(&mut self)[src]

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

pub fn set_start_ts_fallback(&mut self, v: u64)[src]

pub fn get_executors(&self) -> &[Executor][src]

pub fn clear_executors(&mut self)[src]

pub fn set_executors(&mut self, v: RepeatedField<Executor>)[src]

pub fn mut_executors(&mut self) -> &mut RepeatedField<Executor>[src]

pub fn take_executors(&mut self) -> RepeatedField<Executor>[src]

pub fn get_time_zone_offset(&self) -> i64[src]

pub fn clear_time_zone_offset(&mut self)[src]

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

pub fn set_time_zone_offset(&mut self, v: i64)[src]

pub fn get_flags(&self) -> u64[src]

pub fn clear_flags(&mut self)[src]

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

pub fn set_flags(&mut self, v: u64)[src]

pub fn get_output_offsets(&self) -> &[u32][src]

pub fn clear_output_offsets(&mut self)[src]

pub fn set_output_offsets(&mut self, v: Vec<u32>)[src]

pub fn mut_output_offsets(&mut self) -> &mut Vec<u32>[src]

pub fn take_output_offsets(&mut self) -> Vec<u32>[src]

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

pub fn clear_collect_range_counts(&mut self)[src]

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

pub fn set_collect_range_counts(&mut self, v: bool)[src]

pub fn get_max_warning_count(&self) -> u64[src]

pub fn clear_max_warning_count(&mut self)[src]

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

pub fn set_max_warning_count(&mut self, v: u64)[src]

pub fn get_encode_type(&self) -> EncodeType[src]

pub fn clear_encode_type(&mut self)[src]

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

pub fn set_encode_type(&mut self, v: EncodeType)[src]

pub fn get_sql_mode(&self) -> u64[src]

pub fn clear_sql_mode(&mut self)[src]

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

pub fn set_sql_mode(&mut self, v: u64)[src]

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

pub fn clear_time_zone_name(&mut self)[src]

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

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

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

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

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

pub fn clear_collect_execution_summaries(&mut self)[src]

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

pub fn set_collect_execution_summaries(&mut self, v: bool)[src]

pub fn get_max_allowed_packet(&self) -> u64[src]

pub fn clear_max_allowed_packet(&mut self)[src]

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

pub fn set_max_allowed_packet(&mut self, v: u64)[src]

pub fn get_chunk_memory_layout(&self) -> &ChunkMemoryLayout[src]

pub fn clear_chunk_memory_layout(&mut self)[src]

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

pub fn set_chunk_memory_layout(&mut self, v: ChunkMemoryLayout)[src]

pub fn mut_chunk_memory_layout(&mut self) -> &mut ChunkMemoryLayout[src]

pub fn take_chunk_memory_layout(&mut self) -> ChunkMemoryLayout[src]

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

pub fn clear_is_rpn_expr(&mut self)[src]

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

pub fn set_is_rpn_expr(&mut self, v: bool)[src]

pub fn get_user(&self) -> &UserIdentity[src]

pub fn clear_user(&mut self)[src]

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

pub fn set_user(&mut self, v: UserIdentity)[src]

pub fn mut_user(&mut self) -> &mut UserIdentity[src]

pub fn take_user(&mut self) -> UserIdentity[src]

pub fn get_root_executor(&self) -> &Executor[src]

pub fn clear_root_executor(&mut self)[src]

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

pub fn set_root_executor(&mut self, v: Executor)[src]

pub fn mut_root_executor(&mut self) -> &mut Executor[src]

pub fn take_root_executor(&mut self) -> Executor[src]

Trait Implementations

impl Clear for DagRequest[src]

impl Clone for DagRequest[src]

impl Debug for DagRequest[src]

impl Default for DagRequest[src]

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

impl Message for DagRequest[src]

impl PartialEq<DagRequest> for DagRequest[src]

impl PbPrint for DagRequest[src]

impl ProtobufValue for DagRequest[src]

impl StructuralPartialEq for DagRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for DagRequest

impl Send for DagRequest

impl Sync for DagRequest

impl Unpin for DagRequest

impl UnwindSafe for DagRequest

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.