Skip to main content

Database

Struct Database 

Source
pub struct Database {
    pub config: DatabaseConfig,
    pub meta: Meta,
    pub deleted_objects: HashMap<Uuid, Option<NaiveDateTime>>,
    /* private fields */
}
Expand description

A decrypted KeePass database

Fields§

§config: DatabaseConfig

Configuration settings of the database such as encryption and compression algorithms

§meta: Meta

Metadata of the KeePass database

§deleted_objects: HashMap<Uuid, Option<NaiveDateTime>>

References to previously-deleted objects and their deletion times.

Implementations§

Source§

impl Database

Source

pub fn open( source: &mut dyn Read, key: DatabaseKey, ) -> Result<Database, DatabaseOpenError>

Parse a database from a std::io::Read

Source

pub fn parse( data: &[u8], key: DatabaseKey, ) -> Result<Database, DatabaseOpenError>

Parse a database from a byte slice

Source

pub fn get_xml( source: &mut dyn Read, key: DatabaseKey, ) -> Result<Vec<u8>, DatabaseOpenError>

Helper function to load a database into its internal XML chunks

Source

pub fn get_version( source: &mut dyn Read, ) -> Result<DatabaseVersion, DatabaseOpenError>

Get the version of a database without decrypting it

Source§

impl Database

Source

pub fn new() -> Self

Create a new database with a single root group and no entries, groups, or attachments.

The root group will be assigned a new random UUID.

Source

pub fn with_config(config: DatabaseConfig) -> Self

Create a new database with the given configuration and a single root group.

The root group will be assigned a new random UUID.

Source

pub fn new_with_root_id(root_id: GroupId) -> Self

Create a new database with the given group UUID

Source

pub fn root(&self) -> GroupRef<'_>

Get an immutable reference to the root group of the database.

Source

pub fn root_mut(&mut self) -> GroupMut<'_>

Get a mutable reference to the root group of the database.

Source

pub fn recycle_bin(&self) -> Option<GroupRef<'_>>

Get an immutable reference to the recycle bin group, if it exists

Source

pub fn recycle_bin_mut(&mut self) -> Option<GroupMut<'_>>

Get a mutable reference to the recycle bin group, if it exists

Source

pub fn num_attachments(&self) -> usize

Get the number of attachments in the database

Source

pub fn num_custom_icons(&self) -> usize

Get the number of custom icons in the database

Source

pub fn num_entries(&self) -> usize

Get the number of entries in the database

Source

pub fn num_groups(&self) -> usize

Get the number of groups in the database, including the root group and the recycle bin (if it exists)

Source

pub fn iter_all_attachments( &self, ) -> impl Iterator<Item = AttachmentRef<'_>> + '_

Iterate over all attachments with immutable access.

Source

pub fn foreach_attachment_mut<F>(&mut self, f: F)
where F: FnMut(AttachmentMut<'_>),

Iterate over all attachments with mutable access. The provided closure is called for each AttachmentMut and borrows are limited to the closure body.

Source

pub fn iter_all_entries(&self) -> impl Iterator<Item = EntryRef<'_>> + '_

Iterate over all entries with immutable access.

Source

pub fn foreach_entry_mut<F>(&mut self, f: F)
where F: FnMut(EntryMut<'_>),

Iterate over all entries with mutable access. The provided closure is called for each EntryMut and borrows are limited to the closure body.

Source

pub fn iter_all_custom_icons( &self, ) -> impl Iterator<Item = CustomIconRef<'_>> + '_

Iterate over all custom icons with immutable access.

Source

pub fn foreach_custom_icon_mut<F>(&mut self, f: F)
where F: FnMut(CustomIconMut<'_>),

Iterate over all custom icons with mutable access. The provided closure is called for each CustomIconMut and borrows are limited to the closure body.

Source

pub fn iter_all_groups(&self) -> impl Iterator<Item = GroupRef<'_>> + '_

Iterate over all groups with immutable access. This includes the root group and the recycle bin (if it exists).

Source

pub fn foreach_group_mut<F>(&mut self, f: F)
where F: FnMut(GroupMut<'_>),

Iterate over all groups with mutable access. The provided closure is called for each GroupMut and borrows are limited to the closure body.

Source

pub fn attachment(&self, id: AttachmentId) -> Option<AttachmentRef<'_>>

Get an immutable reference to the attachment with the given ID, if it exists

Source

pub fn attachment_mut(&mut self, id: AttachmentId) -> Option<AttachmentMut<'_>>

Get a mutable reference to the attachment with the given ID, if it exists

Source

pub fn custom_icon(&self, id: CustomIconId) -> Option<CustomIconRef<'_>>

Get an immutable reference to the custom icon with the given ID, if it exists

Source

pub fn custom_icon_mut(&mut self, id: CustomIconId) -> Option<CustomIconMut<'_>>

Get a mutable reference to the custom icon with the given ID, if it exists

Source

pub fn entry(&self, id: EntryId) -> Option<EntryRef<'_>>

Get an immutable reference to the entry with the given ID, if it exists

Source

pub fn entry_mut(&mut self, id: EntryId) -> Option<EntryMut<'_>>

Get a mutable reference to the entry with the given ID, if it exists

Source

pub fn group(&self, id: GroupId) -> Option<GroupRef<'_>>

Get an immutable reference to the group with the given ID, if it exists

Source

pub fn group_mut(&mut self, id: GroupId) -> Option<GroupMut<'_>>

Get a mutable reference to the group with the given ID, if it exists

Trait Implementations§

Source§

impl Clone for Database

Source§

fn clone(&self) -> Database

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Database

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Database

Source§

impl PartialEq for Database

Source§

fn eq(&self, other: &Database) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Database

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.