Struct bonsaidb_core::document::BorrowedDocument
source · [−]Expand description
Contains a serialized document in the database.
Fields
header: HeaderThe header of the document, which contains the id and Revision.
contents: CowBytes<'a>The serialized bytes of the stored item.
Implementations
sourceimpl<'a> BorrowedDocument<'a>
impl<'a> BorrowedDocument<'a>
sourcepub fn new<Contents: Into<CowBytes<'a>>>(
id: DocumentId,
contents: Contents
) -> Self
pub fn new<Contents: Into<CowBytes<'a>>>(
id: DocumentId,
contents: Contents
) -> Self
Returns a new instance with the id and content bytes.
sourcepub fn with_contents<C>(
id: C::PrimaryKey,
contents: &C::Contents
) -> Result<Self, Error> where
C: SerializedCollection,
pub fn with_contents<C>(
id: C::PrimaryKey,
contents: &C::Contents
) -> Result<Self, Error> where
C: SerializedCollection,
Returns a new instance with contents, after serializing.
sourcepub fn into_owned(self) -> OwnedDocument
pub fn into_owned(self) -> OwnedDocument
Converts this document to an owned document.
Trait Implementations
sourceimpl<'a> AsMut<Header> for BorrowedDocument<'a>
impl<'a> AsMut<Header> for BorrowedDocument<'a>
sourceimpl<'a> AsRef<Header> for BorrowedDocument<'a>
impl<'a> AsRef<Header> for BorrowedDocument<'a>
sourceimpl<'a> Clone for BorrowedDocument<'a>
impl<'a> Clone for BorrowedDocument<'a>
sourcefn clone(&self) -> BorrowedDocument<'a>
fn clone(&self) -> BorrowedDocument<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> Debug for BorrowedDocument<'a>
impl<'a> Debug for BorrowedDocument<'a>
sourceimpl<'de: 'a, 'a> Deserialize<'de> for BorrowedDocument<'a>
impl<'de: 'a, 'a> Deserialize<'de> for BorrowedDocument<'a>
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<'a, C> Document<C> for BorrowedDocument<'a> where
C: Collection,
impl<'a, C> Document<C> for BorrowedDocument<'a> where
C: Collection,
sourcefn contents(&self) -> Result<C::Contents, Error> where
C: SerializedCollection,
fn contents(&self) -> Result<C::Contents, Error> where
C: SerializedCollection,
Retrieves contents through deserialization into the type D.
sourcefn set_contents(&mut self, contents: C::Contents) -> Result<(), Error> where
C: SerializedCollection,
fn set_contents(&mut self, contents: C::Contents) -> Result<(), Error> where
C: SerializedCollection,
Stores contents into this document.
sourcefn header(&self) -> AnyHeader<C::PrimaryKey>
fn header(&self) -> AnyHeader<C::PrimaryKey>
Returns the header of this document.
sourcefn set_header(&mut self, header: Header) -> Result<(), Error>
fn set_header(&mut self, header: Header) -> Result<(), Error>
Sets the header to the new header.
sourcefn key(&self) -> AnyDocumentId<C::PrimaryKey>
fn key(&self) -> AnyDocumentId<C::PrimaryKey>
Returns the unique key for this document.
sourcefn set_collection_header(
&mut self,
header: CollectionHeader<C::PrimaryKey>
) -> Result<(), Error>
fn set_collection_header(
&mut self,
header: CollectionHeader<C::PrimaryKey>
) -> Result<(), Error>
Sets the header to the new collection header.
sourceimpl<'a, 'b, 'c, Id> From<&'b BorrowedDocument<'b>> for NamedReference<'a, Id>
impl<'a, 'b, 'c, Id> From<&'b BorrowedDocument<'b>> for NamedReference<'a, Id>
sourcefn from(doc: &'b BorrowedDocument<'b>) -> Self
fn from(doc: &'b BorrowedDocument<'b>) -> Self
Performs the conversion.
sourceimpl<'a> HasHeader for BorrowedDocument<'a>
impl<'a> HasHeader for BorrowedDocument<'a>
sourceimpl<'a, 'b, Id> Nameable<'a, Id> for &'a BorrowedDocument<'b>
impl<'a, 'b, Id> Nameable<'a, Id> for &'a BorrowedDocument<'b>
sourcefn name(self) -> Result<NamedReference<'a, Id>, Error>
fn name(self) -> Result<NamedReference<'a, Id>, Error>
Returns this name as a NamedReference.
sourceimpl<'a> Serialize for BorrowedDocument<'a>
impl<'a> Serialize for BorrowedDocument<'a>
sourceimpl<'a, C> TryFrom<&'a BorrowedDocument<'a>> for CollectionDocument<C> where
C: SerializedCollection,
impl<'a, C> TryFrom<&'a BorrowedDocument<'a>> for CollectionDocument<C> where
C: SerializedCollection,
sourceimpl<'a, 'b, C> TryFrom<&'b CollectionDocument<C>> for BorrowedDocument<'a> where
C: SerializedCollection,
impl<'a, 'b, C> TryFrom<&'b CollectionDocument<C>> for BorrowedDocument<'a> where
C: SerializedCollection,
Auto Trait Implementations
impl<'a> RefUnwindSafe for BorrowedDocument<'a>
impl<'a> Send for BorrowedDocument<'a>
impl<'a> Sync for BorrowedDocument<'a>
impl<'a> Unpin for BorrowedDocument<'a>
impl<'a> UnwindSafe for BorrowedDocument<'a>
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more