Struct kpdb::Group [] [src]

pub struct Group {
    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<EntryUuid>,
    pub expires: bool,
    pub expiry_time: DateTime<UTC>,
    pub groups: Vec<GroupUuid>,
    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,
}

A group in the database.

Fields

The date and time this group was created.

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

Default auto-type sequence.

Whether auto-type is enabled.

Whether searching is enabled.

Vector with entry identifiers that belong to this group.

Whether this group expires.

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

Vector with group identifiers that are subgroups of this group.

This group's icon.

Whether this group is expanded.

The date and time this group was last accessed.

The date and time this group was last modified.

The identifier of the last top visible entry.

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

The name of this group.

The notes of this group.

The usage count of this group.

The identifier of this group.

Methods

impl Group
[src]

Create a new group.

Examples

use kpdb::Group;

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

Trait Implementations

impl Clone for Group
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Group
[src]

Formats the value using the given formatter.

impl PartialEq for Group
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for Group
[src]

Returns the "default value" for a type. Read more