[][src]Struct rocfl::ObjectVersionDetails

pub struct ObjectVersionDetails {
    pub id: String,
    pub object_root: String,
    pub digest_algorithm: String,
    pub version_details: VersionDetails,
}

Similar to ObjectVersion, except it does not contain the state map.

Fields

id: String

The object's ID

object_root: String

The path from the storage root to the object root

digest_algorithm: String

The algorithm used to calculate digests (sha512 or sha256)

version_details: VersionDetails

Metadata about the version

Trait Implementations

impl Debug for ObjectVersionDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.