diff --git a/ironsea_index/index.html b/ironsea_index/index.html index 2594d2a..91c5c46 100644 --- a/ironsea_index/index.html +++ b/ironsea_index/index.html @@ -1,6 +1,5 @@ -ironsea_index - Rust

[][src]Crate ironsea_index

Iron Sea - Index

-

This repository contains the traits definitions for the Iron Sea -database toolkit indices.

+ironsea_index - Rust

[][src]Crate ironsea_index

Iron Sea - Index

+

Traits definitions for the Iron Sea database toolkit indices.

Iron Sea: Database Toolkit

Iron Sea provides a set of database engine bricks, which can be combined and applied on arbitrary data structures.

diff --git a/ironsea_index/trait.Indexed.html b/ironsea_index/trait.Indexed.html index 2a5b710..cd14f52 100644 --- a/ironsea_index/trait.Indexed.html +++ b/ironsea_index/trait.Indexed.html @@ -1,4 +1,4 @@ -ironsea_index::Indexed - Rust

[][src]Trait ironsea_index::Indexed

pub trait Indexed<R, K> {
+ironsea_index::Indexed - Rust

[][src]Trait ironsea_index::Indexed

pub trait Indexed<R, K> {
     fn find(&self, key: &K) -> Vec<&R>;
 
fn find_range(&self, start: &K, end: &K) -> Vec<&R>; }

Methods provided by indices.

diff --git a/ironsea_index/trait.IndexedDestructured.html b/ironsea_index/trait.IndexedDestructured.html index f18518f..b7f7ff8 100644 --- a/ironsea_index/trait.IndexedDestructured.html +++ b/ironsea_index/trait.IndexedDestructured.html @@ -1,4 +1,4 @@ -ironsea_index::IndexedDestructured - Rust

[][src]Trait ironsea_index::IndexedDestructured

pub trait IndexedDestructured<F, K> {
+ironsea_index::IndexedDestructured - Rust

[][src]Trait ironsea_index::IndexedDestructured

pub trait IndexedDestructured<F, K> {
     fn find(&self, key: &K) -> Vec<&F>;
 
fn find_range(&self, start: &K, end: &K) -> Vec<(K, &F)>; }

Methods provided by destructuring indices.

diff --git a/ironsea_index/trait.Record.html b/ironsea_index/trait.Record.html index bb97bc1..f14dbea 100644 --- a/ironsea_index/trait.Record.html +++ b/ironsea_index/trait.Record.html @@ -1,4 +1,4 @@ -ironsea_index::Record - Rust

[][src]Trait ironsea_index::Record

pub trait Record<K> {
+ironsea_index::Record - Rust

[][src]Trait ironsea_index::Record

pub trait Record<K> {
     fn key(&self) -> K;
 }

Record behavior used by Indexed implementations.

This trait provides common methods used by index implementations to diff --git a/ironsea_index/trait.RecordFields.html b/ironsea_index/trait.RecordFields.html index 25c5770..ab49664 100644 --- a/ironsea_index/trait.RecordFields.html +++ b/ironsea_index/trait.RecordFields.html @@ -1,4 +1,4 @@ -ironsea_index::RecordFields - Rust

[][src]Trait ironsea_index::RecordFields

pub trait RecordFields<F> {
+ironsea_index::RecordFields - Rust

[][src]Trait ironsea_index::RecordFields

pub trait RecordFields<F> {
     fn fields(&self) -> F;
 }

Record behavior used by IndexedDestructured implementations.

RecordFields is used by indices which de-structure records into two diff --git a/src/ironsea_index/lib.rs.html b/src/ironsea_index/lib.rs.html index 87ff12b..7e12254 100644 --- a/src/ironsea_index/lib.rs.html +++ b/src/ironsea_index/lib.rs.html @@ -132,15 +132,13 @@ 132 133 134 -135

 #![forbid(unsafe_code)]
 #![deny(missing_docs)]
 
 //! # Iron Sea - Index
 //!
-//! This repository contains the traits definitions for the Iron Sea
-//! database toolkit indices.
+//! Traits definitions for the Iron Sea database toolkit indices.
 //!
 //! ## Iron Sea: Database Toolkit
 //! **Iron Sea** provides a set of database engine bricks, which can be