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

Returns a new instance with the id and content bytes.

Returns a new instance with contents, after serializing.

Converts this document to an owned document.

Trait Implementations

Performs the conversion.

Performs the conversion.

Performs the conversion.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The bytes type used in the interface.

Retrieves contents through deserialization into the type D.

Stores contents into this document.

Returns the header of this document.

Sets the header to the new header.

Returns the contents of this document, serialized.

Returns the unique key for this document.

Sets the header to the new collection header.

Performs the conversion.

Returns the header for this instance.

Returns this name as a NamedReference.

Serialize this value into the given Serde serializer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.