Struct bonsaidb::core::document::BorrowedDocument
pub struct BorrowedDocument<'a> {
pub header: Header,
pub contents: CowBytes<'a>,
}
Expand description
Contains a serialized document in the database.
Fields§
§header: Header
The header of the document, which contains the id and Revision
.
contents: CowBytes<'a>
The serialized bytes of the stored item.
Implementations§
§impl<'a> BorrowedDocument<'a>
impl<'a> BorrowedDocument<'a>
pub fn new<Contents>(id: DocumentId, contents: Contents) -> BorrowedDocument<'a>where
Contents: Into<CowBytes<'a>>,
pub fn new<Contents>(id: DocumentId, contents: Contents) -> BorrowedDocument<'a>where Contents: Into<CowBytes<'a>>,
Returns a new instance with the id and content bytes.
pub fn with_contents<C, PrimaryKey>(
id: &PrimaryKey,
contents: &<C as SerializedCollection>::Contents
) -> Result<BorrowedDocument<'a>, Error>where
C: SerializedCollection,
PrimaryKey: KeyEncoding<<C as Collection>::PrimaryKey> + ?Sized,
pub fn with_contents<C, PrimaryKey>( id: &PrimaryKey, contents: &<C as SerializedCollection>::Contents ) -> Result<BorrowedDocument<'a>, Error>where C: SerializedCollection, PrimaryKey: KeyEncoding<<C as Collection>::PrimaryKey> + ?Sized,
Returns a new instance with contents
, after serializing.
pub fn into_owned(self) -> OwnedDocument
pub fn into_owned(self) -> OwnedDocument
Converts this document to an owned document.
Trait Implementations§
§impl<'a> AsMut<Header> for BorrowedDocument<'a>
impl<'a> AsMut<Header> for BorrowedDocument<'a>
§impl<'a> AsRef<[u8]> for BorrowedDocument<'a>
impl<'a> AsRef<[u8]> for BorrowedDocument<'a>
§impl<'a> AsRef<Header> for BorrowedDocument<'a>
impl<'a> AsRef<Header> for BorrowedDocument<'a>
§impl<'a> Clone for BorrowedDocument<'a>
impl<'a> Clone for BorrowedDocument<'a>
§fn clone(&self) -> BorrowedDocument<'a>
fn clone(&self) -> BorrowedDocument<'a>
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 more§impl<'a> Debug for BorrowedDocument<'a>
impl<'a> Debug for BorrowedDocument<'a>
§impl<'de, 'a> Deserialize<'de> for BorrowedDocument<'a>where
'de: 'a,
impl<'de, 'a> Deserialize<'de> for BorrowedDocument<'a>where 'de: 'a,
§fn deserialize<__D>(
__deserializer: __D
) -> Result<BorrowedDocument<'a>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<BorrowedDocument<'a>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl<'a, C> Document<C> for BorrowedDocument<'a>where
C: Collection,
impl<'a, C> Document<C> for BorrowedDocument<'a>where C: Collection,
§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
.§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.§fn header(&self) -> AnyHeader<<C as Collection>::PrimaryKey>
fn header(&self) -> AnyHeader<<C as Collection>::PrimaryKey>
Returns the header of this document.
§fn bytes(&self) -> Result<Vec<u8, Global>, Error>
fn bytes(&self) -> Result<Vec<u8, Global>, Error>
Returns the contents of this document, serialized.
§fn id(&self) -> &DocumentId
fn id(&self) -> &DocumentId
Returns the unique key for this document.
§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.
§impl<'a, 'b, Id> From<&'b BorrowedDocument<'b>> for NamedReference<'a, Id>
impl<'a, 'b, Id> From<&'b BorrowedDocument<'b>> for NamedReference<'a, Id>
§fn from(doc: &'b BorrowedDocument<'b>) -> NamedReference<'a, Id>
fn from(doc: &'b BorrowedDocument<'b>) -> NamedReference<'a, Id>
Converts to this type from the input type.
§impl<'a> HasHeader for BorrowedDocument<'a>
impl<'a> HasHeader for BorrowedDocument<'a>
§impl<'a, 'b, Id> Nameable<'a, Id> for &'a BorrowedDocument<'b>
impl<'a, 'b, Id> Nameable<'a, Id> for &'a BorrowedDocument<'b>
§fn name(self) -> Result<NamedReference<'a, Id>, Error>
fn name(self) -> Result<NamedReference<'a, Id>, Error>
Returns this name as a
NamedReference
.§impl<'a> Serialize for BorrowedDocument<'a>
impl<'a> Serialize for BorrowedDocument<'a>
§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
§impl<'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,
§fn try_from(
value: &'a BorrowedDocument<'a>
) -> Result<CollectionDocument<C>, <CollectionDocument<C> as TryFrom<&'a BorrowedDocument<'a>>>::Error>
fn try_from( value: &'a BorrowedDocument<'a> ) -> Result<CollectionDocument<C>, <CollectionDocument<C> as TryFrom<&'a BorrowedDocument<'a>>>::Error>
Performs the conversion.
§impl<'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,
§fn try_from(
value: &'b CollectionDocument<C>
) -> Result<BorrowedDocument<'a>, <BorrowedDocument<'a> as TryFrom<&'b CollectionDocument<C>>>::Error>
fn try_from( value: &'b CollectionDocument<C> ) -> Result<BorrowedDocument<'a>, <BorrowedDocument<'a> as TryFrom<&'b CollectionDocument<C>>>::Error>
Performs the conversion.
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§
§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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> ToHex for Twhere
T: AsRef<[u8]>,
impl<T> ToHex for Twhere T: AsRef<[u8]>,
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
)