Struct keepass::Group [] [src]

pub struct Group {
    pub name: String,
    pub child_groups: Vec<Group>,
    pub entries: Vec<Entry>,
}

A database group with child groups and entries

Fields

The name of the group

The list of child groups

The list of entries in this group

Methods

impl<'a> Group
[src]

Trait Implementations

impl Debug for Group
[src]

Formats the value using the given formatter.

impl<'a> IntoIterator for &'a Group
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more