[][src]Struct google_sheets4::ManualRuleGroup

pub struct ManualRuleGroup {
    pub group_name: Option<ExtendedValue>,
    pub items: Option<Vec<ExtendedValue>>,
}

A group name and a list of items from the source data that should be placed in the group with this name.

This type is not used in any activity, and only used as part of another schema.

Fields

group_name: Option<ExtendedValue>

The group name, which must be a string. Each group in a given ManualRule must have a unique group name.

items: Option<Vec<ExtendedValue>>

The items in the source data that should be placed into this group. Each item may be a string, number, or boolean. Items may appear in at most one group within a given ManualRule. Items that do not appear in any group will appear on their own.

Trait Implementations

impl Clone for ManualRuleGroup[src]

impl Debug for ManualRuleGroup[src]

impl Default for ManualRuleGroup[src]

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

impl Part for ManualRuleGroup[src]

impl Serialize for ManualRuleGroup[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<T> Typeable for T where
    T: Any