[][src]Struct ynab_api::models::category_group_with_categories::CategoryGroupWithCategories

pub struct CategoryGroupWithCategories {
    pub id: String,
    pub name: String,
    pub hidden: bool,
    pub deleted: bool,
    pub categories: Vec<Category>,
}

Fields

id: Stringname: Stringhidden: bool

Whether or not the category group is hidden

deleted: bool

Whether or not the category group has been deleted. Deleted category groups will only be included in delta requests.

categories: Vec<Category>

Category group categories. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).

Methods

impl CategoryGroupWithCategories[src]

pub fn new(
    id: String,
    name: String,
    hidden: bool,
    deleted: bool,
    categories: Vec<Category>
) -> CategoryGroupWithCategories
[src]

Trait Implementations

impl PartialEq<CategoryGroupWithCategories> for CategoryGroupWithCategories[src]

impl Debug for CategoryGroupWithCategories[src]

impl StructuralPartialEq for CategoryGroupWithCategories[src]

impl Serialize for CategoryGroupWithCategories[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err