// Copyright 2018 Mozilla // // Licensed under the Apache License, Version 2.0 (the "License"); you may not use // this file except in compliance with the License. You may obtain a copy of the // License at http://www.apache.org/licenses/LICENSE-2.0 // Unless required by applicable law or agreed to in writing, software distributed // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR // CONDITIONS OF ANY KIND, either express or implied. See the License for the // specific language governing permissions and limitations under the License.
pubstruct Iter<'i, I> {
iter: I,
phantom: PhantomData<&'i ()>,
}
impl<D> MultiStore<D> where
D: BackendDatabase,
{ pub(crate) fn new(db: D) -> MultiStore<D> {
MultiStore { db }
}
/// Provides a cursor to all of the values for the duplicate entries that match this /// key pubfn get<'r, R, I, C, K>(&self, reader: &'r R, k: K) -> Result<Iter<'r, I>, StoreError> where
R: Readable<'r, Database = D, RoCursor = C>,
I: BackendIter<'r>,
C: BackendRoCursor<'r, Iter = I>,
K: AsRef<[u8]> + 'r,
{ let cursor = reader.open_ro_cursor(&self.db)?; let iter = cursor.into_iter_dup_of(k);
Ok(Iter {
iter,
phantom: PhantomData,
})
}
/// Provides the first value that matches this key pubfn get_first<'r, R, K>(&self, reader: &'r R, k: K) -> Result<Option<Value<'r>>, StoreError> where
R: Readable<'r, Database = D>,
K: AsRef<[u8]>,
{
reader.get(&self.db, &k)
}
/// Insert a value at the specified key. /// This put will allow duplicate entries. If you wish to have duplicate entries /// rejected, use the `put_with_flags` function and specify NO_DUP_DATA pubfn put<T, K>(&self, writer: &mut Writer<T>, k: K, v: &Value) -> EmptyResult where
T: BackendRwTransaction<Database = D>,
K: AsRef<[u8]>,
{
writer.put(&self.db, &k, v, T::Flags::empty())
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.