Struct pliantdb_local::core::document::Revision [−][src]
Expand description
Information about a Document
’s revision history.
Fields
id: u32
The current revision id of the document. This value is sequentially incremented on each document update.
sha256: [u8; 32]
The SHA256 digest of the bytes contained within the Document
.
Implementations
Creates the first revision for a document with the SHA256 digest of the passed bytes.
Creates a revision with id
for a document with the SHA256 digest of the passed bytes.
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Revision, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Revision, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
Auto Trait Implementations
impl RefUnwindSafe for Revision
impl UnwindSafe for Revision
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self