bitwarden_collections/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "uniffi")]
4uniffi::setup_scaffolding!();
5#[cfg(feature = "uniffi")]
6mod uniffi_support;
7
8///
9/// Module containing the collection data models. It also contains the implementations for
10/// Encryptable, TryFrom, and TreeItem
11pub mod collection;
12///
13/// Module containing the error types.
14pub mod error;
15///
16/// Module containing Tree struct that is a tree representation of all structs implementing TreeItem
17/// trait. It is made using an index vector to hold the data and another vector to hold the
18/// parent child relationships between those nodes.
19pub mod tree;