Struct gapi_grpc::google::ads::googleads::v5::common::CombinedRuleUserListInfo[][src]

pub struct CombinedRuleUserListInfo {
    pub left_operand: Option<UserListRuleInfo>,
    pub right_operand: Option<UserListRuleInfo>,
    pub rule_operator: i32,
}

User lists defined by combining two rules, left operand and right operand. There are two operators: AND where left operand and right operand have to be true; AND_NOT where left operand is true but right operand is false.

Fields

left_operand: Option<UserListRuleInfo>

Left operand of the combined rule. This field is required and must be populated when creating new combined rule based user list.

right_operand: Option<UserListRuleInfo>

Right operand of the combined rule. This field is required and must be populated when creating new combined rule based user list.

rule_operator: i32

Operator to connect the two operands.

Required for creating a combined rule user list.

Implementations

impl CombinedRuleUserListInfo[src]

pub fn rule_operator(&self) -> UserListCombinedRuleOperator[src]

Returns the enum value of rule_operator, or the default if the field is set to an invalid enum value.

pub fn set_rule_operator(&mut self, value: UserListCombinedRuleOperator)[src]

Sets rule_operator to the provided enum value.

Trait Implementations

impl Clone for CombinedRuleUserListInfo[src]

impl Debug for CombinedRuleUserListInfo[src]

impl Default for CombinedRuleUserListInfo[src]

impl Message for CombinedRuleUserListInfo[src]

impl PartialEq<CombinedRuleUserListInfo> for CombinedRuleUserListInfo[src]

impl StructuralPartialEq for CombinedRuleUserListInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for CombinedRuleUserListInfo

impl Send for CombinedRuleUserListInfo

impl Sync for CombinedRuleUserListInfo

impl Unpin for CombinedRuleUserListInfo

impl UnwindSafe for CombinedRuleUserListInfo

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]