[][src]Struct libpijul::change::Hashed

pub struct Hashed<Local> {
    pub version: u64,
    pub header: ChangeHeader,
    pub dependencies: BTreeSet<Hash>,
    pub extra_known: BTreeSet<Hash>,
    pub metadata: Vec<u8>,
    pub changes: Vec<Record<Option<Hash>, Local>>,
    pub contents_hash: Hash,
}

Fields

version: u64

Version, again (in order to hash it).

header: ChangeHeader

Header part, containing the metadata.

dependencies: BTreeSet<Hash>

The dependencies of this change.

extra_known: BTreeSet<Hash>

Extra known "context" changes to recover from deleted contexts.

metadata: Vec<u8>

Some space to write application-specific data.

changes: Vec<Record<Option<Hash>, Local>>

The changes, without the contents.

contents_hash: Hash

Hash of the contents, so that the "contents" field is verifiable independently from the actions in this change.

Trait Implementations

impl<Local: Clone> Clone for Hashed<Local>[src]

impl<Local: Debug> Debug for Hashed<Local>[src]

impl<'de, Local> Deserialize<'de> for Hashed<Local> where
    Local: Deserialize<'de>, 
[src]

impl<Local: PartialEq> PartialEq<Hashed<Local>> for Hashed<Local>[src]

impl<Local> Serialize for Hashed<Local> where
    Local: Serialize
[src]

impl<Local> StructuralPartialEq for Hashed<Local>[src]

Auto Trait Implementations

impl<Local> RefUnwindSafe for Hashed<Local> where
    Local: RefUnwindSafe

impl<Local> Send for Hashed<Local> where
    Local: Send

impl<Local> Sync for Hashed<Local> where
    Local: Sync

impl<Local> Unpin for Hashed<Local> where
    Local: Unpin

impl<Local> UnwindSafe for Hashed<Local> where
    Local: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,