Struct bonsaidb_core::schema::view::map::MappedDocument
source · [−]Expand description
A mapped document returned from a view query.
Fields
key: &'a KThe key that this document mapped to.
value: &'a VThe associated value of this key.
document: &'a DThe source document of this mapping.
Auto Trait Implementations
impl<'a, D, K, V> RefUnwindSafe for MappedDocument<'a, D, K, V> where
D: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, D, K, V> Send for MappedDocument<'a, D, K, V> where
D: Sync,
K: Sync,
V: Sync,
impl<'a, D, K, V> Sync for MappedDocument<'a, D, K, V> where
D: Sync,
K: Sync,
V: Sync,
impl<'a, D, K, V> Unpin for MappedDocument<'a, D, K, V>
impl<'a, D, K, V> UnwindSafe for MappedDocument<'a, D, K, V> where
D: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more