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 [CollectionsClient](collection_client::CollectionsClient), which exposes
14/// encrypt/decrypt operations for collections.
15#[allow(missing_docs)]
16pub mod collection_client;
17///
18/// Module containing the error types.
19pub mod error;
20///
21/// Module containing Tree struct that is a tree representation of all structs implementing TreeItem
22/// trait. It is made using an index vector to hold the data and another vector to hold the
23/// parent child relationships between those nodes.
24pub mod tree;