pub struct Group {
Show 20 fields pub creation_time: DateTime<Utc>, pub custom_icon_uuid: Option<CustomIconUuid>, pub def_auto_type_sequence: String, pub enable_auto_type: Option<bool>, pub enable_searching: Option<bool>, pub entries: Vec<Entry>, pub expires: bool, pub expiry_time: DateTime<Utc>, pub groups: Vec<Group>, pub icon: Icon, pub is_expanded: bool, pub last_accessed: DateTime<Utc>, pub last_modified: DateTime<Utc>, pub last_top_visible_entry: EntryUuid, pub location_changed: DateTime<Utc>, pub name: String, pub notes: String, pub usage_count: i32, pub uuid: GroupUuid, pub parent: GroupUuid,
}
Expand description

A group in the database.

Fields

creation_time: DateTime<Utc>

The date and time this group was created.

custom_icon_uuid: Option<CustomIconUuid>

The identifier of this group’s custom icon if any.

def_auto_type_sequence: String

Default auto-type sequence.

enable_auto_type: Option<bool>

Whether auto-type is enabled.

enable_searching: Option<bool>

Whether searching is enabled.

entries: Vec<Entry>

Vector with entries that belong to this group.

expires: bool

Whether this group expires.

expiry_time: DateTime<Utc>

The date and time this group will expire if expires is true.

groups: Vec<Group>

Vector with subgroups of this group.

icon: Icon

This group’s icon.

is_expanded: bool

Whether this group is expanded.

last_accessed: DateTime<Utc>

The date and time this group was last accessed.

last_modified: DateTime<Utc>

The date and time this group was last modified.

last_top_visible_entry: EntryUuid

The identifier of the last top visible entry.

location_changed: DateTime<Utc>

The date and time the location of this group was changed.

name: String

The name of this group.

notes: String

The notes of this group.

usage_count: i32

The usage count of this group.

uuid: GroupUuid

The identifier of this group.

parent: GroupUuid

The parent groups GroupUUID.

Implementations

Create a new group.

Examples
use kpdb::Group;

let group = Group::new("Websites");
source

pub fn add_entry(&mut self, entry: Entry)

Add an entry to the current group.

Examples
use kpdb::{Entry, Group};

let mut group = Group::new("group");
let entry = Entry::new();

assert_eq!(group.entries.len(), 0);
group.add_entry(entry.clone());
assert_eq!(group.entries.len(), 1);
assert_eq!(group.entries[0], entry);

Add a sub group to the current group.

Examples
use kpdb::Group;

let mut root = Group::new("root");
let child = Group::new("child");

assert_eq!(root.groups.len(), 0);
root.add_group(child.clone());
assert_eq!(root.groups.len(), 1);
assert_eq!(root.groups[0], child);

Returns an iterator over the group and sub groups.

Examples
use kpdb::Group;

let mut root = Group::new("root");
let sub_1 = Group::new("sub_1");
let sub_2 = Group::new("sub_2");
root.add_group(sub_1.clone());
root.add_group(sub_2.clone());

let mut iterator = root.iter();
assert_eq!(iterator.next(), Some(&root));
assert_eq!(iterator.next(), Some(&sub_1));
assert_eq!(iterator.next(), Some(&sub_2));
assert_eq!(iterator.next(), None);

Returns an iterator that allows modifying each group.

Examples
use kpdb::Group;

let mut root = Group::new("root");
for group in root.iter_mut() {
    group.name = String::from("name");
}
assert_eq!(root.name, "name");
source

pub fn remove_entry(&mut self, entry_uuid: EntryUuid) -> Option<Entry>

Remove an entry from the current group.

Examples
use kpdb::{Entry, Group};

let mut group = Group::new("Sample");
let entry = Entry::new();
group.add_entry(entry.clone());
assert_eq!(group.entries.len(), 1);
assert_eq!(group.remove_entry(entry.uuid), Some(entry));
assert_eq!(group.entries.len(), 0);

Remove a sub group from the current group.

Examples
use kpdb::Group;

let mut parent = Group::new("Parent");
let child = Group::new("Child");
parent.add_group(child.clone());
assert_eq!(parent.groups.len(), 1);
assert_eq!(parent.remove_group(child.uuid), Some(child));
assert_eq!(parent.groups.len(), 0);

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Gets the date and time the implementor was created.
Gets whether the implementor expires.
Gets the date and time the implementor will expire if expires is true.
Gets the date and time the implementor was last accessed.
Gets the date and time the implementor was last modified.
Gets the date and time the location of the implementor was changed.
Gets the usage count for the implementor.
Sets the date and time the implementor was created.
Sets whether the implementor expires.
Sets the date and time the implementor will expire if expires is true.
Sets the date and time the implementor was last accessed.
Sets the date and time the implementor was last modified.
Sets the date and time the location of the implementor was changed.
Sets the usage count for the implementor.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.