Struct bonsaidb::core::document::OwnedDocument
source · pub struct OwnedDocument {
pub header: Header,
pub contents: Bytes,
}
Expand description
Contains a serialized document in the database.
Fields§
§header: Header
The header of the document, which contains the id and Revision
.
contents: Bytes
The serialized bytes of the stored item.
Trait Implementations§
source§impl AsMut<Header> for OwnedDocument
impl AsMut<Header> for OwnedDocument
source§impl AsRef<[u8]> for OwnedDocument
impl AsRef<[u8]> for OwnedDocument
source§impl AsRef<Header> for OwnedDocument
impl AsRef<Header> for OwnedDocument
source§impl Clone for OwnedDocument
impl Clone for OwnedDocument
source§fn clone(&self) -> OwnedDocument
fn clone(&self) -> OwnedDocument
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for OwnedDocument
impl Debug for OwnedDocument
source§impl<'de> Deserialize<'de> for OwnedDocument
impl<'de> Deserialize<'de> for OwnedDocument
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<OwnedDocument, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<OwnedDocument, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<C> Document<C> for OwnedDocumentwhere
C: Collection,
impl<C> Document<C> for OwnedDocumentwhere
C: Collection,
source§fn contents(&self) -> Result<<C as SerializedCollection>::Contents, Error>where
C: SerializedCollection,
fn contents(&self) -> Result<<C as SerializedCollection>::Contents, Error>where
C: SerializedCollection,
Retrieves
contents
through deserialization into the type D
.source§fn set_contents(
&mut self,
contents: <C as SerializedCollection>::Contents
) -> Result<(), Error>where
C: SerializedCollection,
fn set_contents(
&mut self,
contents: <C as SerializedCollection>::Contents
) -> Result<(), Error>where
C: SerializedCollection,
Stores
contents
into this document.source§fn id(&self) -> &DocumentId
fn id(&self) -> &DocumentId
Returns the unique key for this document.
source§fn header(&self) -> AnyHeader<<C as Collection>::PrimaryKey>
fn header(&self) -> AnyHeader<<C as Collection>::PrimaryKey>
Returns the header of this document.
source§fn set_header(&mut self, header: Header) -> Result<(), Error>
fn set_header(&mut self, header: Header) -> Result<(), Error>
Sets the header to the new header.
source§fn set_collection_header(
&mut self,
header: CollectionHeader<<C as Collection>::PrimaryKey>
) -> Result<(), Error>
fn set_collection_header( &mut self, header: CollectionHeader<<C as Collection>::PrimaryKey> ) -> Result<(), Error>
Sets the header to the new collection header.
source§impl HasHeader for OwnedDocument
impl HasHeader for OwnedDocument
source§impl Serialize for OwnedDocument
impl Serialize for OwnedDocument
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl<'a, C> TryFrom<&'a OwnedDocument> for CollectionDocument<C>where
C: SerializedCollection,
impl<'a, C> TryFrom<&'a OwnedDocument> for CollectionDocument<C>where
C: SerializedCollection,
source§fn try_from(
value: &'a OwnedDocument
) -> Result<CollectionDocument<C>, <CollectionDocument<C> as TryFrom<&'a OwnedDocument>>::Error>
fn try_from( value: &'a OwnedDocument ) -> Result<CollectionDocument<C>, <CollectionDocument<C> as TryFrom<&'a OwnedDocument>>::Error>
Performs the conversion.
Auto Trait Implementations§
impl RefUnwindSafe for OwnedDocument
impl Send for OwnedDocument
impl Sync for OwnedDocument
impl Unpin for OwnedDocument
impl UnwindSafe for OwnedDocument
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> ToHex for T
impl<T> ToHex for T
source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self
into the result. Lower case
letters are used (e.g. f9b4ca
)source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
Encode the hex strict representing
self
into the result. Upper case
letters are used (e.g. F9B4CA
)