Struct tipb::Selection[][src]

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Selection[src]

pub fn new() -> Selection[src]

pub fn get_conditions(&self) -> &[Expr][src]

pub fn clear_conditions(&mut self)[src]

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

pub fn mut_conditions(&mut self) -> &mut RepeatedField<Expr>[src]

pub fn take_conditions(&mut self) -> RepeatedField<Expr>[src]

pub fn get_rpn_conditions(&self) -> &[RpnExpr][src]

pub fn clear_rpn_conditions(&mut self)[src]

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

pub fn mut_rpn_conditions(&mut self) -> &mut RepeatedField<RpnExpr>[src]

pub fn take_rpn_conditions(&mut self) -> RepeatedField<RpnExpr>[src]

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

pub fn clear_child(&mut self)[src]

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

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

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

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

Trait Implementations

impl Clear for Selection[src]

impl Clone for Selection[src]

impl Debug for Selection[src]

impl Default for Selection[src]

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

impl Message for Selection[src]

impl PartialEq<Selection> for Selection[src]

impl PbPrint for Selection[src]

impl ProtobufValue for Selection[src]

impl StructuralPartialEq for Selection[src]

Auto Trait Implementations

impl RefUnwindSafe for Selection

impl Send for Selection

impl Sync for Selection

impl Unpin for Selection

impl UnwindSafe for Selection

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.